diff options
author | Iskar Enev <iskar.enev[@]gmail.com> | 2010-05-12 17:45:29 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:45:29 +0200 |
commit | 2a9bdfe43211885f61972db0729f7731691fd076 (patch) | |
tree | 8885538af04ac20b5f86c8f925285edbf78d4a5e /system/lshw/lshw.SlackBuild | |
parent | 85baeb20e1ccc3ceb113320d5740f21fea338b9c (diff) | |
download | slackbuilds-2a9bdfe43211885f61972db0729f7731691fd076.tar.gz |
system/lshw: Updated for version B.02.14
Diffstat (limited to 'system/lshw/lshw.SlackBuild')
-rw-r--r-- | system/lshw/lshw.SlackBuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/system/lshw/lshw.SlackBuild b/system/lshw/lshw.SlackBuild index 8dcaa85c98..ce3d38389a 100644 --- a/system/lshw/lshw.SlackBuild +++ b/system/lshw/lshw.SlackBuild @@ -4,7 +4,7 @@ # Written by Iskar Enev <iskar.enev[@]gmail.com> PRGNAM=lshw -VERSION=B.02.13 +VERSION=B.02.14 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -42,8 +42,10 @@ make install DESTDIR=$PKG make install-gui DESTDIR=$PKG ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) ( cd $PKG/usr/man @@ -55,7 +57,9 @@ mkdir -p $PKG/usr/share/applications cat $CWD/gtk-lshw.desktop > $PKG/usr/share/applications/gtk-lshw.desktop mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a docs/* COPYING README $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + docs/* COPYING README \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |