diff options
author | Jose V Beneyto <sepen@users.sourceforge.net> | 2008-02-08 01:45:05 +0100 |
---|---|---|
committer | Jose V Beneyto <sepen@users.sourceforge.net> | 2008-02-08 01:45:23 +0100 |
commit | c8d87e81cc314c415ab04337706d5c9b96ce6248 (patch) | |
tree | 16cce6528a12514d5ac27aaf3cbae2faefdf1335 /dmidecode | |
parent | af9d7a034690050955b5a1868de570804e285a11 (diff) | |
download | contrib-c8d87e81cc314c415ab04337706d5c9b96ce6248.tar.gz contrib-c8d87e81cc314c415ab04337706d5c9b96ce6248.tar.xz |
dmidecode: Clean up. Fixed Packager line.
Diffstat (limited to 'dmidecode')
-rw-r--r-- | dmidecode/Pkgfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dmidecode/Pkgfile b/dmidecode/Pkgfile index 97f792eee..2297b3cb4 100644 --- a/dmidecode/Pkgfile +++ b/dmidecode/Pkgfile @@ -1,7 +1,7 @@ -# Description: Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard. +# Description: System's hardware information of your BIOS according to 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 +# Packager: Victor Martinez, gandhul at ono dot com # Depends on: name=dmidecode @@ -10,9 +10,9 @@ release=2 source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz) build() { - cd ${name}-${version} + 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 + make DESTDIR=$PKG install + rm -rf $PKG/usr/share } |