diff options
Diffstat (limited to 'system/exomizer/exomizer.SlackBuild')
-rw-r--r-- | system/exomizer/exomizer.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/system/exomizer/exomizer.SlackBuild b/system/exomizer/exomizer.SlackBuild index a945e68be4eef..fba03086b48fd 100644 --- a/system/exomizer/exomizer.SlackBuild +++ b/system/exomizer/exomizer.SlackBuild @@ -6,6 +6,10 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20210225 bkw: update for v3.1.0, try using upstream's download +# URL again. Handle bitbucket adding ?rev=<hash> to the filename, by +# using .zip* as the source filename. Not ideal, but workable. + # 20191201 bkw: update for v3.0.2 # 20180829 bkw: update for v3.0.1 @@ -17,7 +21,7 @@ # - can still build with VERSION=2.0.9 or VERSION=2.0.10, if needed PRGNAM=exomizer -VERSION=${VERSION:-3.0.2} +VERSION=${VERSION:-3.1.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -56,8 +60,8 @@ cd $TMP rm -rf $PRGNAM-$VERSION mkdir -p $PRGNAM-$VERSION cd $PRGNAM-$VERSION -unzip $CWD/${PRGNAM}${VERSION//./}.zip -x dos/\* win32/\* || \ - unzip $CWD/$PRGNAM-$VERSION.zip -x dos/\* win32/\* +unzip $CWD/${PRGNAM}${VERSION//./}.zip* -x dos/\* win32/\* || \ + unzip $CWD/$PRGNAM-$VERSION.zip* -x dos/\* win32/\* 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 {} \+ |