diff options
author | B. Watson <yalhcru@gmail.com> | 2021-11-26 13:55:01 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-04 10:09:01 +0700 |
commit | dd28ef896461a20738deefa11e30834fa87cf0e6 (patch) | |
tree | 57cdb7a26f44f4fc066f90fda261a7fd75205db8 /audio/unsf/unsf.SlackBuild | |
parent | 59edcf07993c100d2239d120e84690d4e5031919 (diff) | |
download | slackbuilds-dd28ef896461a20738deefa11e30834fa87cf0e6.tar.gz |
audio/unsf: Updated for version 1.1+git20201107.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/unsf/unsf.SlackBuild')
-rw-r--r-- | audio/unsf/unsf.SlackBuild | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/audio/unsf/unsf.SlackBuild b/audio/unsf/unsf.SlackBuild index ed7e80074a..bfdfeb8b4b 100644 --- a/audio/unsf/unsf.SlackBuild +++ b/audio/unsf/unsf.SlackBuild @@ -9,10 +9,12 @@ # Upstream hasn't done a proper release since 1.0, we use latest git. # Use git2targz.sh to prepare source tarballs, when it's time to update. +# 20211126 bkw: update for v1.1+git20201107 + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=unsf -VERSION=${VERSION:-1.1+git20180608} +VERSION=${VERSION:-1.1+git20201107} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -25,9 +27,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -60,11 +59,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.xz 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 {} \+ # upstream forgot to create include/ in the src, revisit this later. sed -i 's#include/\(libunsf\.h\)#\1#' CMakeLists.txt |