summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ea651d98ff0c7e497a2e973986241f6b35db567e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: tho <basedtho at gmail dot com>

pkgname=finalcut-git
pkgver=0.6.0.5a60794
pkgrel=1
pkgdesc="A text-based widget toolkit."
arch=('x86_64')
url="https://github.com/gansm/finalcut"
license=('LGPL3')
depends=('gpm')
makedepends=('autoconf-archive' 'git')
provides=('finalcut')
source=("$pkgname::git+${url}.git")
sha256sums=('SKIP')

prepare() {
    cd "$pkgname"

    autoreconf -if
    ./configure --prefix=/usr
}

build() {
    cd "$pkgname"
    make
}

check() {
    cd "$pkgname"
    make check
}

package() {
    cd "$pkgname"
    make DESTDIR="$pkgdir/" install
}

# vim: set softtabstop=4 shiftwidth=4 expandtab: