summaryrefslogtreecommitdiffstats
path: root/extra/libnet/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libnet/APKBUILD')
-rw-r--r--extra/libnet/APKBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/extra/libnet/APKBUILD b/extra/libnet/APKBUILD
deleted file mode 100644
index e756acc0..00000000
--- a/extra/libnet/APKBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Contributor: Mika Havela <mika.havela@gmail.com>
-# Maintainer: Your Name <youremail@domain.com>
-pkgname=libnet
-pkgver=1.1.2.1
-pkgrel=0
-pkgdesc="A generic networking API that provides access to several protocols."
-url="http://www.packetfactory.net/libnet/"
-license="BSD"
-depends="uclibc"
-makedepends="autoconf automake libtool"
-subpackages="$pkgname-dev"
-source="http://www.packetfactory.net/libnet/dist/$pkgname-$pkgver.tar.gz
- libnet-1.1.2.1-autotools.patch
- libnet-1.1.2.1-fix-chksum.patch
- "
-
-build() {
- local i
- cd "$srcdir/$pkgname"
- for i in ../*.patch; do
- msg "Applyting $i"
- patch -p1 < $i || return 1
- done
-
- aclocal
- libtoolize --force || return 1
- autoconf && automake || return 1
-
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR="$pkgdir" install
-}
-
-md5sums="be845c41170d72c7db524f3411b50256 libnet-1.1.2.1.tar.gz
-7e928170600bea8ed4a0d079b83c80ac libnet-1.1.2.1-autotools.patch
-668189bf87cda8daeaf250146bd88331 libnet-1.1.2.1-fix-chksum.patch"