void-packages/srcpkgs/libseccomp/template

31 lines
889 B
Bash

# Template file for 'libseccomp'
pkgname=libseccomp
version=2.5.4
revision=1
build_style=gnu-configure
hostmakedepends="automake libtool gperf"
checkdepends="which"
short_desc="High level interface to the Linux Kernel's seccomp filter"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-or-later"
homepage="https://github.com/seccomp/libseccomp/"
changelog="https://raw.githubusercontent.com/seccomp/libseccomp/main/CHANGELOG"
distfiles="https://github.com/seccomp/${pkgname}/archive/v${version}.tar.gz"
checksum=96bbadb4384716272a6d2be82801dc564f7aab345febfe9b698b70fc606e3f75
pre_configure() {
NOCONFIGURE=1 ./autogen.sh
}
libseccomp-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/share/man/man3
}
}