diff options
Diffstat (limited to 'graphics/gifsicle/gifsicle.SlackBuild')
-rw-r--r-- | graphics/gifsicle/gifsicle.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/gifsicle/gifsicle.SlackBuild b/graphics/gifsicle/gifsicle.SlackBuild index 32acd3ea21220..b33eb323f6dd5 100644 --- a/graphics/gifsicle/gifsicle.SlackBuild +++ b/graphics/gifsicle/gifsicle.SlackBuild @@ -6,10 +6,12 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20240315 bkw: update for v1.95. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gifsicle -VERSION=${VERSION:-1.94} +VERSION=${VERSION:-1.95} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -57,6 +59,10 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ +# in v1.95, upstream claims we need autoconf >= 2.72, but it builds fine +# with our 2.69 if we change the required version. +sed -i '/AC_PREREQ/s,2\.72,2.69,' configure.ac + # v1.88 shipped the configure script, v1.89 we have to generate it. [ -x configure ] || autoreconf -ifv |