summaryrefslogtreecommitdiff
path: root/opt/dmidecode
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/dmidecode
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/dmidecode')
-rw-r--r--opt/dmidecode/.footprint19
-rw-r--r--opt/dmidecode/.signature6
-rw-r--r--opt/dmidecode/MAKEPKG28
3 files changed, 53 insertions, 0 deletions
diff --git a/opt/dmidecode/.footprint b/opt/dmidecode/.footprint
new file mode 100644
index 0000000..fcff9eb
--- /dev/null
+++ b/opt/dmidecode/.footprint
@@ -0,0 +1,19 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/sbin/
+-rwxr-xr-x root/root usr/sbin/biosdecode
+-rwxr-xr-x root/root usr/sbin/dmidecode
+-rwxr-xr-x root/root usr/sbin/ownership
+-rwxr-xr-x root/root usr/sbin/vpddecode
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/bash-completion/
+drwxr-xr-x root/root usr/share/bash-completion/completions/
+-rw-r--r-- root/root usr/share/bash-completion/completions/biosdecode
+-rw-r--r-- root/root usr/share/bash-completion/completions/dmidecode
+-rw-r--r-- root/root usr/share/bash-completion/completions/ownership
+-rw-r--r-- root/root usr/share/bash-completion/completions/vpddecode
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/biosdecode.8.gz
+-rw-r--r-- root/root usr/share/man/man8/dmidecode.8.gz
+-rw-r--r-- root/root usr/share/man/man8/ownership.8.gz
+-rw-r--r-- root/root usr/share/man/man8/vpddecode.8.gz
diff --git a/opt/dmidecode/.signature b/opt/dmidecode/.signature
new file mode 100644
index 0000000..3e305e7
--- /dev/null
+++ b/opt/dmidecode/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mMfr+S49cR2FdUKw24ZgeGJ+cCDJvtekHk6ssr2U6govclYZXBunFN3r5VLjqGH2wvEZV8aciCB8tlYvF+atUAc=
+
+SHA256 (MAKEPKG) = 1000c6e4cc8b28a17569f0ea334a5743396e268c93a8894e415da47c6e0a4979
+SHA256 (.footprint) = 8acdc7ce79f99118f2c829def96f4cf0bc5430ae0832fd3962def4b8e2de97fb
+SHA256 (dmidecode-3.7.tar.xz) = 2c3aed12c85a1e6a9410d406d5e417c455466dc1bc7c89278bb32cf7cad91e8a
+SHA256 (dmidecode#3.7-1.pkg.tar.gz) = 6af13296aad1e83e593c7fe9e2ad07ee9486605052eee7cabcbe0e4412165b2b
diff --git a/opt/dmidecode/MAKEPKG b/opt/dmidecode/MAKEPKG
new file mode 100644
index 0000000..402dede
--- /dev/null
+++ b/opt/dmidecode/MAKEPKG
@@ -0,0 +1,28 @@
+#!/bin/mkpkg
+# description: DMI table decoder - reads BIOS/SMBIOS hardware information
+# url: https://www.nongnu.org/dmidecode/
+
+name=dmidecode
+version=3.7
+release=1
+depends=()
+makedeps=()
+source=(https://download.savannah.gnu.org/releases/dmidecode/dmidecode-$version.tar.xz)
+
+sha256sums=(
+ "2c3aed12c85a1e6a9410d406d5e417c455466dc1bc7c89278bb32cf7cad91e8a"
+)
+
+build() {
+ cd dmidecode-$version
+ make CC=clang prefix=/usr
+ make CC=clang prefix=/usr DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/doc
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh