diff options
Diffstat (limited to 'audio/synthv1/synthv1.SlackBuild')
-rw-r--r-- | audio/synthv1/synthv1.SlackBuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/audio/synthv1/synthv1.SlackBuild b/audio/synthv1/synthv1.SlackBuild index 84ed049ea2e0..e35806730e1b 100644 --- a/audio/synthv1/synthv1.SlackBuild +++ b/audio/synthv1/synthv1.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20181216 bkw: updated for v0.9.4, qt5 now required # 20180828 bkw: updated for v0.9.2 # 20180702 bkw: updated for v0.9.1, install French man page correctly. # 20180615 bkw: updated for v0.9.0 @@ -17,7 +18,7 @@ # 20170324 bkw: updated for v0.8.1 PRGNAM=synthv1 -VERSION=${VERSION:-0.9.2} +VERSION=${VERSION:-0.9.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,11 +58,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 {} \+ LDFLAGS="-Wl,-s" \ CFLAGS="$SLKCFLAGS" \ @@ -73,7 +71,6 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-qt4 \ --build=$ARCH-slackware-linux make |