diff options
author | Richard Ellis <rellis@dp100.com> | 2011-12-10 18:53:27 -0200 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-12-10 18:53:27 -0200 |
commit | ae68c92cbd4212d7f2189e94fe92c3e6a2393ad7 (patch) | |
tree | 9433c4a28ab41f5137608359f13d97f1dd002586 /desktop/wmfire/wmfire.SlackBuild | |
parent | 86cec3241d4426b96b92cd475d92c4d18800d957 (diff) | |
download | slackbuilds-ae68c92cbd4212d7f2189e94fe92c3e6a2393ad7.tar.gz |
desktop/wmfire: Updated for version 1.2.4.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'desktop/wmfire/wmfire.SlackBuild')
-rw-r--r-- | desktop/wmfire/wmfire.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/desktop/wmfire/wmfire.SlackBuild b/desktop/wmfire/wmfire.SlackBuild index 74d33e0492..1bfa9ea2da 100644 --- a/desktop/wmfire/wmfire.SlackBuild +++ b/desktop/wmfire/wmfire.SlackBuild @@ -5,18 +5,17 @@ # Written by Richard Ellis (rellis@dp100.com) # Released into the public domain on June 6, 2009 +# V2 for Slackware 13.37 - November 11, 2011 PRGNAM=wmfire -VERSION=${VERSION:-1.2.3} +VERSION=${VERSION:-1.2.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -68,13 +67,11 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ |