diff options
author | Jose V Beneyto <joberui@ei.upv.es> | 2008-01-04 13:22:21 +0100 |
---|---|---|
committer | Jose V Beneyto <joberui@ei.upv.es> | 2008-01-04 13:22:21 +0100 |
commit | bfb5797c58f1a32c6af27f8419e8a3177102c288 (patch) | |
tree | 32f68b20813a904b7f642d1d9f088a8c9a31879a /dmidecode | |
parent | f42e1af07b0ec56405524b5a47848d17da8b7889 (diff) | |
download | contrib-bfb5797c58f1a32c6af27f8419e8a3177102c288.tar.gz contrib-bfb5797c58f1a32c6af27f8419e8a3177102c288.tar.xz |
dmidecode: New port.
Diffstat (limited to 'dmidecode')
-rw-r--r-- | dmidecode/.footprint | 12 | ||||
-rw-r--r-- | dmidecode/.md5sum | 1 | ||||
-rw-r--r-- | dmidecode/Pkgfile | 18 |
3 files changed, 31 insertions, 0 deletions
diff --git a/dmidecode/.footprint b/dmidecode/.footprint new file mode 100644 index 000000000..24b106c10 --- /dev/null +++ b/dmidecode/.footprint @@ -0,0 +1,12 @@ +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/biosdecode.8.gz +-rw-r--r-- root/root usr/man/man8/dmidecode.8.gz +-rw-r--r-- root/root usr/man/man8/ownership.8.gz +-rw-r--r-- root/root usr/man/man8/vpddecode.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 diff --git a/dmidecode/.md5sum b/dmidecode/.md5sum new file mode 100644 index 000000000..37005d3fd --- /dev/null +++ b/dmidecode/.md5sum @@ -0,0 +1 @@ +1f804692168178c19a8ec86d147fbc77 dmidecode-2.9.tar.gz diff --git a/dmidecode/Pkgfile b/dmidecode/Pkgfile new file mode 100644 index 000000000..97f792eee --- /dev/null +++ b/dmidecode/Pkgfile @@ -0,0 +1,18 @@ +# Description: Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard. +# URL: http://www.nongnu.org/dmidecode/ +# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net +# Maintainer: Victor Martinez, gandhul at ono dot com +# Depends on: + +name=dmidecode +version=2.9 +release=2 +source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz) + +build() { + cd ${name}-${version} + sed -e 's|/usr/local|/usr|' -e 's|/share/man|/man|' -i Makefile + make + make DESTDIR=${PKG} install + rm -rf ${PKG}/usr/share +} |