37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'nftables'
|
|
pkgname=nftables
|
|
version=0.9.8
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--sbindir=/usr/bin --with-json --with-python-bin=/bin/python3"
|
|
hostmakedepends="python3 asciidoc docbook2x flex pkg-config"
|
|
makedepends="gmp-devel jansson-devel libmnl-devel libnftnl-devel readline-devel"
|
|
short_desc="Netfilter nftables userspace tools"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="http://netfilter.org/projects/nftables/"
|
|
distfiles="http://www.netfilter.org/projects/${pkgname}/files/${pkgname}-${version}.tar.bz2"
|
|
checksum=60fc004656dae4fefc4901c939c9d64120b4dedb49738e420a9a34989f108fe4
|
|
|
|
post_install() {
|
|
vsv nftables
|
|
}
|
|
|
|
libnftables_package() {
|
|
short_desc+=" - runtime libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
libnftables-devel_package() {
|
|
depends="libnftables-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|