diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-02 10:10:50 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-15 17:06:25 +0700 |
commit | f827e2f5aa56a98c929ee0d682749a8ac9c9aab9 (patch) | |
tree | 5025107579ce2555736a4359bccc2752ae1e4254 /audio/zita-ajbridge/zita-ajbridge.SlackBuild | |
parent | 4c55221cdfd0077172183c1e90e20ede29248150 (diff) |
audio/zita-ajbridge: Updated for version 0.8.2.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'audio/zita-ajbridge/zita-ajbridge.SlackBuild')
-rw-r--r-- | audio/zita-ajbridge/zita-ajbridge.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/audio/zita-ajbridge/zita-ajbridge.SlackBuild b/audio/zita-ajbridge/zita-ajbridge.SlackBuild index adce97caa0fe7..1b4fa67008bdc 100644 --- a/audio/zita-ajbridge/zita-ajbridge.SlackBuild +++ b/audio/zita-ajbridge/zita-ajbridge.SlackBuild @@ -6,13 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20191202 bkw: updated for v0.8.2 +# 20170122 bkw: updated for v0.7.0 # 20151105 bkw: updated for v0.6.0, which now has man pages, so # got rid of the ones I wrote. -# 20170122 bkw: updated for v0.7.0 - PRGNAM=zita-ajbridge -VERSION=${VERSION:-0.7.0} +VERSION=${VERSION:-0.8.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -52,11 +52,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 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 {} \+ # Makefile in 0.6.0 doesn't create these: mkdir -p $PKG/usr/bin $PKG/usr/man/man1 |