summaryrefslogtreecommitdiff
path: root/community/packeth
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/packeth
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/packeth')
-rw-r--r--community/packeth/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/packeth/PKGBUILD b/community/packeth/PKGBUILD
new file mode 100644
index 000000000..7fec455f2
--- /dev/null
+++ b/community/packeth/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 77004 2012-10-03 15:04:34Z tredaelli $
+# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: Rudy Matela <rudy.matela@gmail.com>
+
+pkgname=packeth
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="A Linux GUI packet generator tool for ethernet."
+depends=(gtk2)
+source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2")
+url="http://packeth.sourceforge.net/"
+md5sums=('dab613ab413e959cb5c1ef6fd385a041')
+arch=('i686' 'x86_64')
+license=('GPL')
+
+build() {
+ cd "$srcdir"/packETH-$pkgver
+
+ sed -i 's/^LIBS=/LIBS+=/' Makefile.am
+ autoreconf
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir"/packETH-$pkgver
+ make install DESTDIR="$pkgdir/"
+}