diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2017-01-31 06:46:50 -0800 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-04 06:59:48 +0700 |
commit | fab305b9726654183f5b6a00f7edb38ccd5f134c (patch) | |
tree | 4123e51d5fd361db535f59a68ea8121909e82c6a /graphics/exact-image/exact-image.SlackBuild | |
parent | 715781980c820d7ed300e853e45fbdd0b560922b (diff) |
graphics/exact-image: Updated for version 0.9.2.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'graphics/exact-image/exact-image.SlackBuild')
-rw-r--r-- | graphics/exact-image/exact-image.SlackBuild | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/graphics/exact-image/exact-image.SlackBuild b/graphics/exact-image/exact-image.SlackBuild index 3cb540987b46..790c5c86318d 100644 --- a/graphics/exact-image/exact-image.SlackBuild +++ b/graphics/exact-image/exact-image.SlackBuild @@ -3,13 +3,13 @@ # Written by Benjamin Trigona-Harany <slackbuilds@jaxartes.net> PRGNAM=exact-image -VERSION=${VERSION:-0.9.1} +VERSION=${VERSION:-0.9.2} BUILD=${BUILD:-3} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -20,8 +20,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -49,12 +49,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Patch to fix build with libpng16 (-current) (thanks to Debian) -patch -p1 --verbose < $CWD/exact-image-libpng15.patch - -# Patch to fix build with giflib-5.1 (-current) (thanks to PLD Linux) -patch -p1 --verbose < $CWD/exact-image-giflib.patch - # Patch to fix perl path eval $(perl -V:vendorlib) sed "s,@vendorlib@,$vendorlib,g" $CWD/fixup-perl_paths.diff | patch -p1 --verbose |