updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / nipper-cli / PKGBUILD
blob2caf2bccf4b851355c66c4402e41eb51a8954dea
1 # Contributor: John Askew <john.askew@gmail.com>
2 pkgname="nipper-cli"
3 pkgver=0.12.0
4 pkgrel=1
5 pkgdesc="A tool for auditing network device configuration files"
6 arch=('i686', 'x86_64')
7 url="http://nipper.titania.co.uk"
8 license=('GPL3')
9 groups=()
10 depends=('libnipper')
11 makedepends=('cmake')
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=()
17 install=
18 source=("http://downloads.sourceforge.net/nipper/$pkgname-$pkgver.tgz")
19 noextract=()
20 md5sums=("6a160cafb0c043e2330756a2b7b83daf") #generate with 'makepkg -g'
22 build() {
23   cd "$srcdir/$pkgname-$pkgver"
25   mkdir build
26   cd build
27   cmake ../
28   make || return 1
29   make DESTDIR="$pkgdir/" install
30   cd ..
33 # vim:set ts=2 sw=2 et: