aboutsummaryrefslogtreecommitdiffstats
path: root/testing/bgs/APKBUILD
blob: b886bd9c9b1da8ae656674657ffc1fc887994f12 (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
# Contributor: dai9ah <dai9ah@protonmail.com>
# Maintainer: dai9ah <dai9ah@protonmail.com>
pkgname=bgs
pkgver=0.8
pkgrel=0
pkgdesc="Extremely fast and small background setter for X"
url="https://github.com/Gottox/bgs"
arch="all"
license="MIT"
makedepends="imlib2-dev libxinerama-dev"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/Gottox/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	sed -i "$builddir/config.mk" \
		-e "/CFLAGS/s|\${CPPFLAGS}|& $CFLAGS|g" \
		-e "/LDFLAGS/s|\-s|$LDFLAGS|g"
}

build() {
	make -C "$builddir"
}

check() {
	cd "$builddir"
	./bgs -v > /dev/null
}

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

sha512sums="4f7aa32d9cf60252abfc87cf72c7bc20ac691af3684a0923d3e2a3506407bddee9d2e5f49da97a154ed2acf1a876b2952ab61dd412f2de39c1303e7551acaec8  bgs-0.8.tar.gz"