dmidecode: adopted port

This commit is contained in:
Tim Biermann 2023-08-18 20:04:20 +02:00
parent 921e9a8bf9
commit 6aa914752e
2 changed files with 9 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39QIi3YXstgGbo0V6nz44We3+4xAH1yV9iFzTTvCo/fkAM5UIaGAD+k09iGrvb3TNF5CB4A9sVhVM35WcEi8Mgc=
SHA256 (Pkgfile) = 41551aaa8cea3a021490e9d9306612298b19bdf2bc745dd847a054d6e156b5f7
RWSagIOpLGJF3x6c3i0ARqRTMSoRLkzEtCP0ytrse0JLmPyVb4h1CkSRx8aGgFB4bK9KKtf5WLFUODVKOllbtz6+rV/4ShQD7Qs=
SHA256 (Pkgfile) = f61822008cb963ed217183284adf483c5796e643fbf217511f7091baeb20adce
SHA256 (.footprint) = e8001da59fb4dce6fcec90ab2fb385ed72590dea17c1b3abefa5685b7dd98d7c
SHA256 (dmidecode-3.5.tar.xz) = 79d76735ee8e25196e2a722964cf9683f5a09581503537884b256b01389cc073

View File

@ -1,6 +1,6 @@
# Description: System's hardware information of your BIOS according to SMBIOS/DMI standard.
# Description: System's hardware information of your BIOS according to SMBIOS/DMI standard
# URL: https://www.nongnu.org/dmidecode/
# Maintainer: Danny Rawlins, crux at romster dot me
# Maintainer: Tim Biermann, tbier at posteo dot de
name=dmidecode
version=3.5
@ -8,9 +8,10 @@ release=1
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
make prefix=/usr DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
make prefix=/usr DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}