void-packages/srcpkgs/numactl/template

44 lines
944 B
Bash

# Template file for 'numactl'
pkgname=numactl
version=2.0.18
revision=1
build_style=gnu-configure
hostmakedepends="automake libtool"
short_desc="Simple NUMA policy support"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-only"
homepage="https://github.com/numactl/numactl"
distfiles="https://github.com/numactl/numactl/archive/v${version}.tar.gz"
checksum=8cd6c13f3096e9c2293c1d732f56e2aa37a7ada1a98deed3fac7bd6da1aaaaf6
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
# XXX
nopie=yes
fi
pre_configure() {
autoreconf -fi
}
post_install() {
rm -r ${DESTDIR}/usr/share/man/man2
}
libnuma_package() {
short_desc+=" - runtime library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
libnuma-devel_package() {
depends="libnuma>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
vmove usr/lib/pkgconfig
}
}