development/icon: Updated for version 9.5.23a
Signed-off-by: Kyle Guinn <elyk03@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b1d401bc4b
commit
733643e288
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for icon
|
||||
|
||||
# Copyright 2010-2022 Kyle Guinn <elyk03@gmail.com>
|
||||
# Copyright 2010-2024 Kyle Guinn <elyk03@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -25,7 +25,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=icon
|
||||
VERSION=${VERSION:-9.5.22e}
|
||||
VERSION=${VERSION:-9.5.23a}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -47,22 +47,17 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# At one point, enabling "-O2" appeared to cause
|
||||
# "Run-time error 302", "memory violation" (from the SIGSEGV trap)
|
||||
# whenever running icon programs. I can't reproduce it.
|
||||
# However, one of the tests fails with "-O2". Use "-O" instead
|
||||
# since it is the default in config/linux/Makedefs.
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O -march=i586 -mtune=i686"
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O -march=i686 -mtune=i686"
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O -fPIC"
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O"
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="icon"
|
||||
VERSION="9.5.22e"
|
||||
VERSION="9.5.23a"
|
||||
HOMEPAGE="https://www2.cs.arizona.edu/icon/"
|
||||
DOWNLOAD="https://github.com/gtownsend/icon/archive/v9.5.22e/icon-9.5.22e.tar.gz"
|
||||
MD5SUM="b0dd17d0232b76d83f51f66d2ecaaa4a"
|
||||
DOWNLOAD="https://github.com/gtownsend/icon/archive/v9.5.23a/icon-9.5.23a.tar.gz"
|
||||
MD5SUM="1b822ac3a5bd317d52b9fe468d7215f8"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue