summaryrefslogtreecommitdiff
path: root/community/packeth
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/packeth
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 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/"
+}