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