aboutsummaryrefslogtreecommitdiffstats
path: root/testing/xload/APKBUILD
blob: 3de87faa888dd29aed3b2ba7667bef1c1caf8cb8 (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
# Maintainer: Taner Tas <taner76@gmail.com>
pkgname=xload
pkgver="1.1.3"
pkgrel=0
pkgdesc="System load average display for X"
url="https://xorg.freedesktop.org"
arch="all"
license="MIT"
depends="libintl"
makedepends="libx11-dev libxaw-dev libxmu-dev libxt-dev gettext-dev"
subpackages="$pkgname-doc"
source="https://www.x.org/archive/individual/app/${pkgname}-${pkgver}.tar.bz2"

build() {
	export CFLAGS="$CFLAGS -DRLOADSTUB"
	export LIBS="$LIBS -lintl"
	cd "$builddir"
	 ./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--disable-nls
	make
}

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

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

sha512sums="8dbc4f0cee7b30d7381be819152b27653d9b0049266e59bde2e2c972a88c4f2bdea766fc407bbdfef15d0aab30fedc756189a1048170a812853133a5094fe7a5  xload-1.1.3.tar.bz2"