1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 19:46:14 +02:00
build/pkg/libnl3/build
David Oberhollenzer 94ccf6d7e2 cleanup: add common implementation of check_update
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-30 10:40:54 +01:00

27 lines
524 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"
}