mirror of
https://github.com/pygos/build.git
synced 2024-11-05 19:47:09 +01:00
27 lines
739 B
Text
27 lines
739 B
Text
VERSION="0.9.0"
|
|
SRCDIR="nftables-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.bz2"
|
|
URL="https://netfilter.org/projects/nftables/files"
|
|
SHA256SUM="ad8181b5fcb9ca572f444bed54018749588522ee97e4c21922648bb78d7e7e91"
|
|
DEPENDS="libmnl-dev libnftnl-dev gmp-dev readline-dev ncurses-dev crt-dev"
|
|
SUBPKG="nftables nftables-dev"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
run_configure "$1" --disable-debug --disable-man-doc --without-mini-gmp
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
curl --silent -L "$URL" | grep -o ">nftables-[0-9.]*tar.bz2<" | \
|
|
sed 's/>nftables-//g' | sed 's/.tar.bz2<//g' | grep -v 0.099 |\
|
|
verson_find_greatest "$VERSION"
|
|
}
|