diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2012-08-17 23:40:47 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-17 23:40:47 -0500 |
commit | 95ceb586e31391ad5574a9cfa06fa17ee319d636 (patch) | |
tree | 4d348d001f49d2d8fd0e43f8725c7a4c09fe4bd4 /development/parrot/parrot.SlackBuild | |
parent | 23f4de823320ff005d7aedbc865b2e30ef2aee2c (diff) | |
download | slackbuilds-95ceb586e31391ad5574a9cfa06fa17ee319d636.tar.gz |
development/parrot: Use icu4c regardless during build
icu4c is now part of Slackware 14.0
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
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 |