aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-10-18 10:00:03 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-10-18 10:00:03 +0000
commit269ecbac504f42830953ed90dc7158da0da33baa (patch)
tree8ef9b1e7dc05043b39ad0b0884fba78a7da39de8 /testing
parentc2c2061a75e2f7252dd4fe58b93a6a763926079c (diff)
downloadaports-269ecbac504f42830953ed90dc7158da0da33baa.tar.bz2
aports-269ecbac504f42830953ed90dc7158da0da33baa.tar.xz
main/libnetfilter_cthelper: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/libnetfilter_cthelper/APKBUILD43
1 files changed, 0 insertions, 43 deletions
diff --git a/testing/libnetfilter_cthelper/APKBUILD b/testing/libnetfilter_cthelper/APKBUILD
deleted file mode 100644
index aee2921c4e..0000000000
--- a/testing/libnetfilter_cthelper/APKBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=libnetfilter_cthelper
-pkgver=1.0.0
-pkgrel=0
-pkgdesc="A Netfilter netlink library for connection tracking helpers"
-url="http://www.netfilter.org/projects/libnetfilter_cthelper/index.html"
-arch="all"
-license="GPLv2"
-depends=""
-makedepends="libmnl-dev"
-install=""
-subpackages="$pkgname-dev"
-source="http://www.netfilter.org/projects/libnetfilter_cthelper/files/libnetfilter_cthelper-$pkgver.tar.bz2"
-
-_builddir="$srcdir"/libnetfilter_cthelper-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
- rm -f "$pkgdir"/usr/lib/*.la
-}
-
-md5sums="b2efab1a3a198a5add448960ba011acd libnetfilter_cthelper-1.0.0.tar.bz2"