diff options
Diffstat (limited to 'development/parrot/parrot.SlackBuild')
-rw-r--r-- | development/parrot/parrot.SlackBuild | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/development/parrot/parrot.SlackBuild b/development/parrot/parrot.SlackBuild index 2678aad3b8..2a03676300 100644 --- a/development/parrot/parrot.SlackBuild +++ b/development/parrot/parrot.SlackBuild @@ -5,7 +5,7 @@ PRGNAM=parrot VERSION=${VERSION:-2.6.0} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -24,9 +24,6 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -# Standard build without ICU -ICU=${ICU:-no} - if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" LIBDIRSUFFIX="" @@ -56,13 +53,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Do we want to compile this with icu4c support? -if [ "$ICU" = "yes" ]; then - ICUCONFIG="--icu-config=/usr/bin/icu-config" -else - ICUCONFIG="--without-icu" -fi - perl Configure.pl \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ @@ -71,7 +61,7 @@ perl Configure.pl \ --mandir=/usr/man \ --pkgconfigdir=pkgconfig \ --parrot_is_shared \ - $ICUCONFIG + --icu-config=/usr/bin/icu-config make make install DESTDIR=$PKG |