summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 54d2ae8894e0e5079515abda7ac545c6d4e2bd25 (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
40
41
42
43
44
# Maintainer: Raja Mukherji <rajamukherji@gmail.com>
pkgname=rabs
pkgver=2.4.5
pkgrel=4
epoch=
pkgdesc="Generic imperative build system"
arch=('x86_64' 'i686')
url=""
license=('MIT')
groups=()
depends=('gc' 'sqlite')
makedepends=()
checkdepends=()
optdepends=()
provides=('rabs')
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/wrapl/$pkgname#tag=v$pkgver")
noextract=()
md5sums=(SKIP)
validpgpkeys=()

prepare() {
	cd "$pkgname"
	git submodule update --init --recursive
}

build() {
	cd "$pkgname"
	make
}

check() {
	cd "$pkgname"
}

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