summaryrefslogtreecommitdiff
path: root/community/tcpflow
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/tcpflow
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/tcpflow')
-rw-r--r--community/tcpflow/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/tcpflow/PKGBUILD b/community/tcpflow/PKGBUILD
new file mode 100644
index 000000000..582004c4e
--- /dev/null
+++ b/community/tcpflow/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 82467 2013-01-18 15:47:09Z fyan $
+# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
+# Contributor: Jeff Mickey <jeff@archlinux.org>
+
+pkgname=tcpflow
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
+arch=('i686' 'x86_64')
+url="http://afflib.org/software/tcpflow"
+license=('GPL')
+depends=('gcc-libs' 'libpcap' 'zlib')
+source=("https://github.com/simsong/$pkgname/archive/$pkgname-$pkgver.tar.gz")
+
+build() {
+ cd "$srcdir/$pkgname-$pkgname-$pkgver"
+ sh bootstrap.sh
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+md5sums=('446be6d852bc7ddd0a8d5149f2bddb60')