diff options
Diffstat (limited to 'libraries/clucene/clucene.SlackBuild')
-rw-r--r-- | libraries/clucene/clucene.SlackBuild | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/libraries/clucene/clucene.SlackBuild b/libraries/clucene/clucene.SlackBuild index 50929947c85d0..73a3e32d397d1 100644 --- a/libraries/clucene/clucene.SlackBuild +++ b/libraries/clucene/clucene.SlackBuild @@ -1,9 +1,8 @@ #!/bin/sh # Slackware build script for clucene -# Written by ppr:kut <hmwiesinger@gmx.at> -# Copyright 2007 Heinz Wiesinger +# Copyright 2007-2008 Heinz Wiesinger <pprkut@liwjatan.at> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,10 +23,11 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=clucene -VERSION=0.9.20 +VERSION=0.9.21b ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -37,6 +37,8 @@ if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" fi set -e @@ -48,7 +50,11 @@ rm -rf $PRGNAM-core-$VERSION tar xvf $CWD/$PRGNAM-core-$VERSION.tar.bz2 cd $PRGNAM-core-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-s . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -56,7 +62,9 @@ CXXFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ - --disable-static + --disable-static \ + --build=$ARCH-slackware-linux \ + --host=$ARCH-slackware-linux make make install-strip DESTDIR=$PKG |