mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
614 B
Bash
20 lines
614 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
|
|
pkgname=tcpflow
|
|
pkgver=0.21
|
|
pkgrel=2
|
|
pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.circlemud.org/~jelson/software/tcpflow/"
|
|
license=('GPL')
|
|
depends=('libpcap')
|
|
source=(http://www.circlemud.org/pub/jelson/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('45a5aef6f043312315b7f342afc4a9c5')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|