diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-11 19:44:12 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 19:44:12 +0200 |
commit | 268a918e9401cd38ae74fda99ded9405035e477a (patch) | |
tree | faf377b0d562c795d1d86d59ddbbc0fd783d4fcd /development/bluefish/bluefish.SlackBuild | |
parent | 624d1b494ef31afcf81fe5a7ca05355e58dab4e0 (diff) |
development/bluefish: Updated for version 1.0.7
Diffstat (limited to 'development/bluefish/bluefish.SlackBuild')
-rw-r--r-- | development/bluefish/bluefish.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/development/bluefish/bluefish.SlackBuild b/development/bluefish/bluefish.SlackBuild index a08c171a6bdb0..f8d27803d938e 100644 --- a/development/bluefish/bluefish.SlackBuild +++ b/development/bluefish/bluefish.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for bluefish -# Copyright 2006 Robby Workman (http://rlworkman.net) +# Copyright 2006-2007 Robby Workman (http://rlworkman.net) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,9 +27,9 @@ PRGNAM=bluefish VERSION=1.0.7 ARCH=${ARCH:-i486} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -55,7 +55,6 @@ CXXFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --mandir=/usr/man \ --without-libgnomeui \ - --enable-gcc3-optimization=$ARCH \ --disable-update-databases \ || exit 1 @@ -67,7 +66,7 @@ find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs ( cd $PKG/usr/man || exit find . -type f -exec gzip -9 {} \; - for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |