diff options
Diffstat (limited to 'audio/guitarix/guitarix.SlackBuild')
-rw-r--r-- | audio/guitarix/guitarix.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/audio/guitarix/guitarix.SlackBuild b/audio/guitarix/guitarix.SlackBuild index 64507101e7f8e..41cfa07e44a0c 100644 --- a/audio/guitarix/guitarix.SlackBuild +++ b/audio/guitarix/guitarix.SlackBuild @@ -6,6 +6,10 @@ # Modified by B. Watson <yalhcru@gmail.com>. Modified version released # under the WTFPL, for details see http://www.wtfpl.net/txt/copying/ +# 20170404 bkw: +# - Updated for 0.35.3 +# - Use + rather than ; in find/chmod. Noticeably faster. + # 20170306 bkw: # - Flip changelog comments right-side up # - Stop writing outside of $TMP. @@ -73,7 +77,7 @@ # - Add guitarix's README to /usr/doc PRGNAM=guitarix -VERSION=${VERSION:-0.35.2} +VERSION=${VERSION:-0.35.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -119,9 +123,9 @@ 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 \ + -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 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # this is no longer documented in README, but still here for debugging. if [ "${LV2:-yes}" = "no" ]; then |