1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-29 06:20:12 +02:00
build/pkg/libseccomp/build
David Oberhollenzer 4fa9c0bbfa Bump libseccomp version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-07-07 16:39:49 +02:00

25 lines
492 B
Plaintext

VERSION="2.4.1"
SRCDIR="libseccomp-${VERSION}"
TARBALL="${SRCDIR}.tar.gz"
URL="https://github.com/seccomp/libseccomp/releases/download/v${VERSION}"
SHA256SUM="1ca3735249af66a1b2f762fe6e710fcc294ad7185f1cc961e5bd83f9988006e8"
DEPENDS="toolchain"
prepare() {
return
}
build() {
run_configure "$1"
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
}
check_update() {
check_update_simple "https://github.com/seccomp/libseccomp/releases" \
"libseccomp" "tar.gz"
}