updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / istatd / PKGBUILD
blob7b8e542c70b5c4e6f058add2ec50a990354c1093
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=istatd
8 pkgver=0.5.7
9 pkgrel=2
10 pkgdesc="iStat Server for Linux"
11 arch=('i686' 'x86_64')
12 url="http://bjango.com/iphone/istat/"
13 license=('Unknown')
14 groups=()
15 depends=('libxml2')
16 makedepends=()
17 optdepends=()
18 provides=('istatd')
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=${pkgname}.install
24 changelog=
25 source=(https://github.com/downloads/tiwilliam/istatd/$pkgname-$pkgver.tar.gz)
26 noextract=()
27 md5sums=('15e717be70a64cf8a8522da8ee5641d3') #generate with 'makepkg -g'
29 build() {
30   cd "$srcdir/$pkgname-$pkgver"
32   ./configure --prefix=/usr --sysconfdir=/etc
33   make
36 package() {
37   cd "$srcdir/$pkgname-$pkgver"
39   make DESTDIR="$pkgdir/" install
42 # vim:set ts=2 sw=2 et: