summaryrefslogtreecommitdiff
path: root/opt/pciutils
diff options
context:
space:
mode:
Diffstat (limited to 'opt/pciutils')
-rw-r--r--opt/pciutils/.footprint28
-rw-r--r--opt/pciutils/.signature6
-rw-r--r--opt/pciutils/MAKEPKG27
3 files changed, 61 insertions, 0 deletions
diff --git a/opt/pciutils/.footprint b/opt/pciutils/.footprint
new file mode 100644
index 0000000..7e51fac
--- /dev/null
+++ b/opt/pciutils/.footprint
@@ -0,0 +1,28 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/lspci
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/pci/
+-rw-r--r-- root/root usr/include/pci/config.h
+-rw-r--r-- root/root usr/include/pci/header.h
+-rw-r--r-- root/root usr/include/pci/pci.h
+-rw-r--r-- root/root usr/include/pci/types.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libpci.a
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libpci.pc
+drwxr-xr-x root/root usr/sbin/
+-rwxr-xr-x root/root usr/sbin/pcilmr
+-rwxr-xr-x root/root usr/sbin/setpci
+-rwxr-xr-x root/root usr/sbin/update-pciids
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/pci.ids.5.gz
+drwxr-xr-x root/root usr/share/man/man7/
+-rw-r--r-- root/root usr/share/man/man7/pcilib.7.gz
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/lspci.8.gz
+-rw-r--r-- root/root usr/share/man/man8/pcilmr.8.gz
+-rw-r--r-- root/root usr/share/man/man8/setpci.8.gz
+-rw-r--r-- root/root usr/share/man/man8/update-pciids.8.gz
diff --git a/opt/pciutils/.signature b/opt/pciutils/.signature
new file mode 100644
index 0000000..ca7dea9
--- /dev/null
+++ b/opt/pciutils/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mHsgWuU2//3y6lABXXIVYjg6WIAeI9Yq1JjDj3peCNEyvn0a8pP45f2fEJnJBHipYZa3oI0wcVNWERyF01sdYAc=
+
+SHA256 (MAKEPKG) = 067565c8ef36edbd397a07fb8c6669945abe4472c7e57719bfaa8bcc8b03ee2d
+SHA256 (.footprint) = ce71657f3f723a11f28bc66ff8f232f1e9db5d1053ba85c09e3738b772a68e5b
+SHA256 (pciutils-3.15.0.tar.gz) = a42e6e3f76fb6b1f6ac2e08cdd151f6bf78bc4f6312c591f4b6ec197582ede3a
+SHA256 (pciutils#3.15.0-1.pkg.tar.gz) = 4c7d2bd443f3c45a7fb5185ce8d01d059fe12e87f38690242babe186d0315dd9
diff --git a/opt/pciutils/MAKEPKG b/opt/pciutils/MAKEPKG
new file mode 100644
index 0000000..94e0988
--- /dev/null
+++ b/opt/pciutils/MAKEPKG
@@ -0,0 +1,27 @@
+#!/bin/mkpkg
+# description: PCI utilities (lspci, setpci)
+# url: https://mj.ucw.cz/sw/pciutils/
+name=pciutils
+version=3.15.0
+release=1
+depends=(hwdata)
+source=(https://mj.ucw.cz/download/linux/pci/$name-$version.tar.gz)
+sha256sums=(
+ "a42e6e3f76fb6b1f6ac2e08cdd151f6bf78bc4f6312c591f4b6ec197582ede3a"
+)
+
+build() {
+ cd $name-$version
+ make CC=cc PREFIX=/usr SHAREDIR=/usr/share/hwdata \
+ ZLIB=no DNS=no SHARED=no -j$(nproc)
+ make DESTDIR=$PKG PREFIX=/usr SHAREDIR=/usr/share/hwdata \
+ SHARED=no install install-lib
+
+ rm -rf $PKG/usr/share/hwdata/
+}
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh