aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: a1c2ca6f84d74706f39777bee6f49231c5b716b8 (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
pkgname=shaman-git
pkgver=2.0.0.α.r22.g1ded016
pkgrel=1

pkgdesc="A small, native C library and utility to fetch weather"
url="https://github.com/HalosGhost/shaman"
arch=('i686' 'x86_64')
license=('GPL2')

depends=('curl' 'jansson')
makedepends=('git' 'tup' 'clang' 'python-sphinx')

source=('git+https://github.com/HalosGhost/shaman.git')

sha256sums=('SKIP')

pkgver () {
	cd shaman
	git describe --long | sed -r 's/([^-]*-g)/r\1/; s/-/./g'
}

build () {
	cd shaman
	LANG='en_US.utf8' tup upd
}

check () {
	cd shaman/test
	LD_LIBRARY_PATH=../src ./suite
}

package () {
	cd shaman
	DESTDIR="$pkgdir" PREFIX='/usr' ./install.sh
}