1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 12:36:14 +02:00
build/pkg/libnl3/build
David Oberhollenzer 29a79dcb3c Fix wrong usage of check_update_simple
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-07-07 16:17:16 +02:00

27 lines
523 B
Plaintext

VERSION="3.2.25"
SRCDIR="libnl-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://www.infradead.org/~tgr/libnl/files"
SHA256SUM="8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5"
DEPENDS="toolchain"
SUBPKG="libnl3 libnl3-dev"
prepare() {
return
}
build() {
run_configure "$1" --disable-cli
make -j $NUMJOBS
}
deploy() {
unfuck_libtool
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
check_update_simple "$URL" "libnl" "tar.gz"
}