updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / ostinato / PKGBUILD
blob245dc0023403b58ad799daee21c52ab1b1b97467
1 pkgname=ostinato
2 pkgver=0.5
3 pkgrel=1
4 url="http://code.google.com/p/ostinato/"
5 pkgdesc="Ostinato is an open-source, cross-platform network packet/traffic generator and analyzer with a friendly GUI.It aims to be Wireshark in Reverse and thus become complementary to Wireshark."
6 source=http://ostinato.googlecode.com/files/ostinato-src-$pkgver.tar.gz
7 arch=('i686' 'x86_64')
8 depends=('protobuf' 'qt' 'libpcap')
9 license=(GPL)
12 build(){
13    cd $srcdir/$pkgname-$pkgver
14    qmake PREFIX=/usr ost.pro || return 1
15    make || return 1
16    mkdir -p $pkgdir/usr/bin
17    cp client/ostinato $pkgdir/usr/bin
18    cp server/drone $pkgdir/usr/bin
19 #  make INSTALL_DIR=$pkgdir install
22 md5sums=('cb8a34f6141ea1b1902adb53a3ec2af9')