37 lines
895 B
Text
37 lines
895 B
Text
# Template file for 'numactl'
|
|
pkgname=numactl
|
|
version=2.0.10
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
short_desc="Simple NUMA policy support"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="LGPL-2.1"
|
|
homepage="http://oss.sgi.com/projects/libnuma/"
|
|
distfiles="ftp://oss.sgi.com/www/projects/libnuma/download/${pkgname}-${version}.tar.gz"
|
|
checksum=59f12db9890f51060998f774924e31a949a7fb7d4f1548ef96a8e347b37f0187
|
|
only_for_archs="i686 x86_64"
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
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
|
|
}
|
|
}
|