1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-07 14:26:13 +02:00
build/pkg/libnl3/build
David Oberhollenzer fa4eff263b Cleanup: implement defaults for package functions
This commit adds an "emptypackage" template that implements defaults
for all package functions and is included before every package.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2020-04-16 15:16:58 +02:00

23 lines
500 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"
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"
}