diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2011-07-17 10:13:36 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-12-03 14:49:17 -0600 |
commit | f7997541de17a632ba518b837a98043e4ac982e0 (patch) | |
tree | 6c1e0918949badcc770a1d8269b949f18ee72665 /testing | |
parent | 8569ec2f7ec19e1e484b2abfc24915db6efbd921 (diff) | |
download | aports-f7997541de17a632ba518b837a98043e4ac982e0.tar.bz2 aports-f7997541de17a632ba518b837a98043e4ac982e0.tar.xz |
Initial APKBUILD for arpon
Package description:
ArpON (ARP handler inspection) is a portable handler daemon that
make ARP protocol secure in order to avoid the Man In The Middle
(MITM) attack through ARP Spoofing, ARP Cache Poisoning, ARP Poison
Routing (APR) attacks. It blocks also the derived attacks by it,
which Sniffing, Hijacking, Injection, Filtering & co attacks for
more complex derived attacks, as: DNS Spoofing, WEB Spoofing,
Session Hijacking and SSL/TLS Hijacking & co attacks.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/arpon/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/arpon/APKBUILD b/testing/arpon/APKBUILD new file mode 100644 index 0000000000..52e1ae22a5 --- /dev/null +++ b/testing/arpon/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=arpon +pkgver=2.6 +pkgrel=0 +pkgdesc="ARP handler inspection" +url="http://arpon.sourceforge.net/" +arch="all" +license="BSD" +depends="" +depends_dev="" +makedepends="libpcap-dev libnet-dev libdnet-dev cmake" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/arpon/ArpON-$pkgver.tar.gz" +_builddir="$srcdir"/ArpON-$pkgver + +build() { + cd "$_builddir" + cmake . + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="9489883bf40ae9d5f9a3d987a29ab95d ArpON-2.6.tar.gz" |