diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2012-12-05 20:18:03 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2012-12-05 20:18:03 +1100 |
commit | 19c3908763f9a2e04bb6a2e97cbc5425cd7eeefb (patch) | |
tree | 9f73729de69ec6ce79d6d80eb530c1abc345b4d9 /libnetfilter_cthelper | |
parent | 798fd043c3428c8e85afd53f5954ad5499ac793b (diff) | |
download | contrib-19c3908763f9a2e04bb6a2e97cbc5425cd7eeefb.tar.gz contrib-19c3908763f9a2e04bb6a2e97cbc5425cd7eeefb.tar.xz |
libnetfilter_cthelper: initial import
Diffstat (limited to 'libnetfilter_cthelper')
-rw-r--r-- | libnetfilter_cthelper/.footprint | 11 | ||||
-rw-r--r-- | libnetfilter_cthelper/.md5sum | 1 | ||||
-rw-r--r-- | libnetfilter_cthelper/Pkgfile | 17 |
3 files changed, 29 insertions, 0 deletions
diff --git a/libnetfilter_cthelper/.footprint b/libnetfilter_cthelper/.footprint new file mode 100644 index 000000000..1a7b952e0 --- /dev/null +++ b/libnetfilter_cthelper/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libnetfilter_cthelper/ +-rw-r--r-- root/root usr/include/libnetfilter_cthelper/libnetfilter_cthelper.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libnetfilter_cthelper.la +lrwxrwxrwx root/root usr/lib/libnetfilter_cthelper.so -> libnetfilter_cthelper.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libnetfilter_cthelper.so.0 -> libnetfilter_cthelper.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libnetfilter_cthelper.so.0.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libnetfilter_cthelper.pc diff --git a/libnetfilter_cthelper/.md5sum b/libnetfilter_cthelper/.md5sum new file mode 100644 index 000000000..5d2e818d7 --- /dev/null +++ b/libnetfilter_cthelper/.md5sum @@ -0,0 +1 @@ +b2efab1a3a198a5add448960ba011acd libnetfilter_cthelper-1.0.0.tar.bz2 diff --git a/libnetfilter_cthelper/Pkgfile b/libnetfilter_cthelper/Pkgfile new file mode 100644 index 000000000..6c12c25d8 --- /dev/null +++ b/libnetfilter_cthelper/Pkgfile @@ -0,0 +1,17 @@ +# Description: Is a userspace library that provides the programming interface to the user-space helper infrastructure available since Linux kernel 3.6. +# URL: http://netfilter.org/projects/libnetfilter_cthelper/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Danny Rawlins, monster dot romster at gmail dot com +# Depends on: libmnl + +name=libnetfilter_cthelper +version=1.0.0 +release=1 +source=(http://www.netfilter.org/projects/$name/files/$name-$version.tar.bz2) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |