22 lines
543 B
Plaintext
22 lines
543 B
Plaintext
# Description: Netfilter kernel/userspace communication library.
|
|
# URL: http://www.netfilter.org/projects/libnfnetlink/index.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Nathan Pardoe, lithium at poolofrandomness dot com
|
|
|
|
name=libnfnetlink
|
|
version=1.0.1
|
|
release=2
|
|
source=(http://www.netfilter.org/projects/$name/files/$name-$version.tar.bz2
|
|
sync_with_kernel_headers.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/sync_with_kernel_headers.patch
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|