mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
26 lines
523 B
Text
26 lines
523 B
Text
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"
|
|
}
|