1
0
forked from ports/contrib

dmidecode: 2.12 -> 3.2

This commit is contained in:
Danny Rawlins 2020-01-01 16:04:41 +11:00
parent f47038aa02
commit 1f42a0069e
3 changed files with 20 additions and 20 deletions

View File

@ -1,6 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/dmidecode.8.gz
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/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

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF398fOAbh9mdrtMCOlLofD4SCFruSXraQhJ6lqcZD5s5+sBSwfN/5MwYL9r45rEAMMrMGo2O3htnpiP+aNbAuFA8=
SHA256 (Pkgfile) = 2f0ecdd737e4149139b8411ff5fb2eb883f443a107a09ccbc677fd1e0fa0c368
SHA256 (.footprint) = 0a63b3f4265e3e1801aab59e25d43eac4738813b1c48890d1aee201d0c85ce6a
SHA256 (dmidecode-2.12.tar.gz) = 5a8214b99c1762f4510bd92baa279336e5fed6e5cd2e418d46d95a4ecc783922
RWSagIOpLGJF34yzy12pMmYTbXlso0d6G+F8ZC9GE2Bu1ud3pf9DlxaVTvt/skuDnJAu3jymr/Je177Q7oRAjcIThs1aNTo8pQQ=
SHA256 (Pkgfile) = fb4aa8efc4708852689d27e3bfce382d3a66bb3774663f37080b974bcfdaab75
SHA256 (.footprint) = e8001da59fb4dce6fcec90ab2fb385ed72590dea17c1b3abefa5685b7dd98d7c
SHA256 (dmidecode-3.2.tar.xz) = 077006fa2da0d06d6383728112f2edef9684e9c8da56752e97cd45a11f838edd

View File

@ -1,23 +1,16 @@
# Description: System's hardware information of your BIOS according to SMBIOS/DMI standard.
# URL: http://www.nongnu.org/dmidecode/
# URL: https://www.nongnu.org/dmidecode/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Victor Martinez, pitillo at ono dot com
name=dmidecode
version=2.12
version=3.2
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
build() {
cd $name-$version
sed -i \
-e 's|/usr/local|/usr|' \
-e 's|/share/man|/man|' \
-e '42d' Makefile
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
rmdir $PKG/usr/share
make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
make prefix=/usr DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}