mirror of
https://github.com/pygos/build.git
synced 2024-11-16 16:37:10 +01:00
f415a39e96
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
25 lines
537 B
Text
25 lines
537 B
Text
VERSION="0.8.3"
|
|
SRCDIR="nftables-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.bz2"
|
|
URL="https://netfilter.org/projects/nftables/files"
|
|
SHA256SUM="d16be1f5db88e95d29fc0b0e4df88acd079f3ee8e2b872ec7673f9a0d5d95e38"
|
|
DEPENDS="libmnl libnftnl gmp readline ncurses"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
$1/configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
|
--disable-debug --disable-man-doc --without-mini-gmp
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
local DEVDEPLOY="$3"
|
|
|
|
make DESTDIR="$DEPLOY" install-strip
|
|
}
|