diff options
author | B. Watson <yalhcru@gmail.com> | 2017-04-04 22:45:03 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-08 06:58:14 +0700 |
commit | 9d3500cced5507f8956cdc5d1084b5944b25cb62 (patch) | |
tree | 4684bbaaccb08aa8a82d24a990771d94178cd650 /audio/guitarix/guitarix.SlackBuild | |
parent | 719ddc56a51520d80572b6ffc7f021f53f30685c (diff) | |
download | slackbuilds-9d3500cced5507f8956cdc5d1084b5944b25cb62.tar.gz |
audio/guitarix: Updated for version 0.35.3.
Signed-off-by: B. Watson <yalhcru@gmail.com>
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 64507101e7..41cfa07e44 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 |