Add numactl, rocm, amdgpu-pro and README

This commit is contained in:
2026-02-09 10:52:11 -04:00
commit 94e69cedc0
16 changed files with 26421 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
0147c1923c791c75abeb2d34333364aeb3233cbe6e71ca002383a92737f081aa numactl-2.0.19.tar.gz
+32
View File
@@ -0,0 +1,32 @@
numactl-2.0.19-1
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/memhog
-rwxr-xr-x root/root usr/bin/migratepages
-rwxr-xr-x root/root usr/bin/migspeed
-rwxr-xr-x root/root usr/bin/numactl
-rwxr-xr-x root/root usr/bin/numademo
-rwxr-xr-x root/root usr/bin/numastat
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/numa.h
-rw-r--r-- root/root usr/include/numacompat1.h
-rw-r--r-- root/root usr/include/numaif.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libnuma.a
lrwxrwxrwx root/root usr/lib/libnuma.so -> libnuma.so.1.0.0
lrwxrwxrwx root/root usr/lib/libnuma.so.1 -> libnuma.so.1.0.0
-rwxr-xr-x root/root usr/lib/libnuma.so.1.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/numa.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man2/
-rw-r--r-- root/root usr/share/man/man2/move_pages.2.gz
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/numa.3.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/memhog.8.gz
-rw-r--r-- root/root usr/share/man/man8/migratepages.8.gz
-rw-r--r-- root/root usr/share/man/man8/migspeed.8.gz
-rw-r--r-- root/root usr/share/man/man8/numactl.8.gz
-rw-r--r-- root/root usr/share/man/man8/numastat.8.gz
+3
View File
@@ -0,0 +1,3 @@
autoconf
automake
libtool
+20
View File
@@ -0,0 +1,20 @@
description="NUMA policy support"
homepage="https://github.com/numactl/numactl"
maintainer="Fraggle, fraggle at disroot dot org"
name=numactl
version=2.0.19
release=1
source="$name-$version.tar.gz::https://github.com/numactl/numactl/archive/refs/tags/v$version.tar.gz"
build() {
cd $name-$version
# Release tarballs may have configure but miss build-aux; regenerate all
./autogen.sh
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}