diff options
author | B. Watson <yalhcru@gmail.com> | 2019-11-27 15:10:15 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-15 17:06:18 +0700 |
commit | 4de70bbcc7a834600db086e4cb1d2d1e408a4d6e (patch) | |
tree | fdbafea17942706d1d934123406945d44a9187e6 /graphics/gifsicle/gifsicle.SlackBuild | |
parent | 74b413a71f7ef2cb6c74124890d81bcf61f7fb80 (diff) |
graphics/gifsicle: Updated for version 1.92.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'graphics/gifsicle/gifsicle.SlackBuild')
-rw-r--r-- | graphics/gifsicle/gifsicle.SlackBuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/graphics/gifsicle/gifsicle.SlackBuild b/graphics/gifsicle/gifsicle.SlackBuild index 8f7881ef92f6c..e10ad39025f28 100644 --- a/graphics/gifsicle/gifsicle.SlackBuild +++ b/graphics/gifsicle/gifsicle.SlackBuild @@ -7,7 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=gifsicle -VERSION=${VERSION:-1.91} +VERSION=${VERSION:-1.92} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -47,11 +47,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ # v1.88 shipped the configure script, v1.89 we have to generate it. [ -x configure ] || autoreconf -ifv |