updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / tcpcopy / PKGBUILD
blobf079cbec84c05e9bd2c80ae35de7c4b5b157fdf3
1 # Contributor: Tocer Deng <tocer.deng@gmail.com>
2 pkgname=tcpcopy
3 pkgver=0.3.3
4 pkgrel=1
5 pkgdesc="a request replication tool and is mainly for testing tasks using netlink and raw sockets"
6 arch=('i686' 'x86_64')
7 url="http://code.google.com/p/tcpcopy/"
8 license=('BSD')
9 groups=()
10 depends=('iptables')
11 makedepends=()
12 source=(http://tcpcopy.googlecode.com/files/$pkgname-$pkgver.tar.gz)
13 md5sums=('ea65219b6160be34b5a6c7ac1e005797')
15 build() {
16   cd "$srcdir/$pkgname-$pkgver"
18   ./configure --prefix=/usr
19   make || return 1
20   make DESTDIR="$pkgdir/" install
23 # vim:set ts=2 sw=2 et: