diff options
author | B. Watson <yalhcru@gmail.com> | 2021-11-26 17:26:21 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-04 10:09:02 +0700 |
commit | 6bc7d5397d169b557d5a5be1ca98e405fe23de79 (patch) | |
tree | a1c2132f7988138051edf42679abf8de596fddd5 /audio/nnls-chroma/nnls-chroma.SlackBuild | |
parent | 98c3ec952bb8b1c2fc09aa880312563a09131edf (diff) | |
download | slackbuilds-6bc7d5397d169b557d5a5be1ca98e405fe23de79.tar.gz |
audio/nnls-chroma: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/nnls-chroma/nnls-chroma.SlackBuild')
-rw-r--r-- | audio/nnls-chroma/nnls-chroma.SlackBuild | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/audio/nnls-chroma/nnls-chroma.SlackBuild b/audio/nnls-chroma/nnls-chroma.SlackBuild index ff73ffc343..28a4ed9470 100644 --- a/audio/nnls-chroma/nnls-chroma.SlackBuild +++ b/audio/nnls-chroma/nnls-chroma.SlackBuild @@ -22,9 +22,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -56,11 +53,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 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 {} \+ # Look for chord.dict in correct path on x86_64 sed -i "s,/usr/lib/vamp,/usr/lib$LIBDIRSUFFIX/vamp," chromamethods.cpp |