updated on Sat Jan 21 20:03:50 UTC 2012
[aur-mirror.git] / dosdetector / PKGBUILD
blob9c2b6e8584e4bebb25d5b2985b9d220f4313e582
1 # Contributor: Nathan Owe <ndowens04 at gmail>
2 pkgname=dosdetector
3 pkgver=current
4 pkgrel=1
5 pkgdesc="analyze and detect suspicious traffic from IP and alert about it. "
6 arch=('i686' 'x86_64')
7 url="http://darkzone.ma.cx/resources/unix/dosdetector"
8 license=('BSD')
9 depends=('ncurses' 'libpcap')
10 source=(http://darkzone.ma.cx/resources/unix/dosdetector/download.php?file=$pkgname-$pkgver.tar.gz)
11 md5sums=('ac37a3242ad6fee1a0576bcf2845bcfe') 
13 build() {
14   cd $srcdir/$pkgname-$pkgver
16   ./configure --prefix=/usr 
17   make || return 1
18   make bindir=$pkgdir/usr/bin mandir=$pkgdir/usr/share/man install
19 install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
22 # vim:set ts=2 sw=2 et: