2022-01-09 04:43:44 +01:00
|
|
|
# Description: libnftnl is a userspace library providing a low-level netlink programming interface (API) to the in-kernel nf_tables subsystem
|
|
|
|
# URL: https://netfilter.org/projects/libnftnl/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: libmnl
|
|
|
|
|
|
|
|
name=libnftnl
|
2023-07-12 12:01:03 +02:00
|
|
|
version=1.2.6
|
2022-01-09 04:43:44 +01:00
|
|
|
release=1
|
2023-03-10 15:02:25 +01:00
|
|
|
source=(https://www.netfilter.org/pub/libnftnl/libnftnl-$version.tar.xz)
|
2022-01-09 04:43:44 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|