diff options
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 |