diff options
-rw-r--r-- | audio/guitarix/guitarix.SlackBuild | 10 | ||||
-rw-r--r-- | audio/guitarix/guitarix.info | 6 |
2 files changed, 10 insertions, 6 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 diff --git a/audio/guitarix/guitarix.info b/audio/guitarix/guitarix.info index 3b21447f42..b503815813 100644 --- a/audio/guitarix/guitarix.info +++ b/audio/guitarix/guitarix.info @@ -1,8 +1,8 @@ PRGNAM="guitarix" -VERSION="0.35.2" +VERSION="0.35.3" HOMEPAGE="http://guitarix.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/guitarix/guitarix2-0.35.2.tar.xz" -MD5SUM="34c9becf43145eac7281abad5de4540f" +DOWNLOAD="http://downloads.sourceforge.net/guitarix/guitarix2-0.35.3.tar.xz" +MD5SUM="d073e551b2da7d339e738f932150d581" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="jack-audio-connection-kit liblrdf lilv" |