diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-17 06:41:34 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-20 20:03:53 +0700 |
commit | f14df34b0e729d97914e0e67a90233bec8d3b5d0 (patch) | |
tree | fa03a99e9cb945225d69eb98129a38647feeb5b8 /libraries/soundtouch/soundtouch.SlackBuild | |
parent | a8409be8c2844f4da6280841ca30e0ea06fee8da (diff) |
libraries/soundtouch: Updated for version 1.9.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/soundtouch/soundtouch.SlackBuild')
-rw-r--r-- | libraries/soundtouch/soundtouch.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libraries/soundtouch/soundtouch.SlackBuild b/libraries/soundtouch/soundtouch.SlackBuild index 3fb2cddea9ca..8a5970a1fa78 100644 --- a/libraries/soundtouch/soundtouch.SlackBuild +++ b/libraries/soundtouch/soundtouch.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=soundtouch -VERSION=1.7.1 +VERSION=${VERSION:-1.9.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,10 +64,10 @@ tar xvzf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; ./bootstrap @@ -89,7 +89,7 @@ make install \ pkgdocdir="/usr/doc/$PRGNAM-$VERSION" \ DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |