#Packager: George Vlahavas pkgname=numactl pkgver=2.0.11 pkgrel=1gv source=("ftp://oss.sgi.com/www/projects/libnuma/download/numactl-$pkgver.tar.gz") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=http://oss.sgi.com/projects/libnuma/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "numactl (Simple NUMA policy support)" "NUMA stands for Non-Uniform Memory Access, in other words a system" "whose memory is not all in one place. The numactl program allows you" "to run your application program on specific cpu's and memory nodes." "It does this by supplying a NUMA memory policy to the operating system" "before running your program." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --disable-static \ --build=$arch-slackware-linux make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg # move_pages(2) is provided by man-pages and is more up-to-date there # anyway rm -rf $startdir/pkg/usr/share/man/man2 }