aboutsummaryrefslogtreecommitdiffstats
path: root/testing/samurai/APKBUILD
blob: 6d98642ea6c93b3f42fa68018930663d5d6641a7 (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
# Contributor: Drew DeVault <sir@cmpwn.com>
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=samurai
pkgver=0.4
pkgrel=0
pkgdesc="ninja-compatible build tool written in C"
url="https://github.com/michaelforney/samurai"
arch="all"
license="Apache-2.0"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/michaelforney/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	make
}

check() {
	cd "$builddir"
	rm *.o
	./samu
}

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

sha512sums="dd851f7f12315aa28157e88e6a07a14aa8636d331ee5712dd31f80eb484be445ba78c8f234ab2d63326b5e3b5407195052598fda15409056a438d94926265496  samurai-0.4.tar.gz"