diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-03 16:22:11 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:34 +0700 |
commit | 72dd58137fe3cb94016b51a169bd40d3b9d3762a (patch) | |
tree | d5dfe2e1269421f243793e07acb56ecac37bcab5 /audio/swh-plugins-lv2 | |
parent | ebba75446cd78ab696cba556b6759ce703db0f54 (diff) |
audio/swh-plugins-lv2: Update README, slack-desc.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/swh-plugins-lv2')
-rw-r--r-- | audio/swh-plugins-lv2/README | 5 | ||||
-rw-r--r-- | audio/swh-plugins-lv2/slack-desc | 8 | ||||
-rw-r--r-- | audio/swh-plugins-lv2/swh-plugins-lv2.SlackBuild | 17 |
3 files changed, 15 insertions, 15 deletions
diff --git a/audio/swh-plugins-lv2/README b/audio/swh-plugins-lv2/README index adf6973802cf..4242e7dd41b6 100644 --- a/audio/swh-plugins-lv2/README +++ b/audio/swh-plugins-lv2/README @@ -1,5 +1,10 @@ swh-plugins-lv2 (GPL free software audio plugins for LV2) +This collection of plugins by Steve Harris includes the usual effects +such as EQ, compression, flange, phaser, chorus, echo/delay, reverb, +tube amp simulation, etc. 93 plugins are included (too many to list +here). + For LADSPA versions of these plugins, see swh-plugins. These plugins work in lv2_jack_host and ardour, but do NOT work in diff --git a/audio/swh-plugins-lv2/slack-desc b/audio/swh-plugins-lv2/slack-desc index 5e48f1c0473e..2645fb2ec01c 100644 --- a/audio/swh-plugins-lv2/slack-desc +++ b/audio/swh-plugins-lv2/slack-desc @@ -8,10 +8,10 @@ |-----handy-ruler------------------------------------------------------| swh-plugins-lv2: swh-plugins-lv2 (GPL free software audio plugins for LV2) swh-plugins-lv2: -swh-plugins-lv2: Requires lv2 and slv2, available at SlackBuilds.org -swh-plugins-lv2: -swh-plugins-lv2: For LADSPA versions of these plugins, see swh-plugins. -swh-plugins-lv2: +swh-plugins-lv2: This collection of plugins by Steve Harris includes the usual effects +swh-plugins-lv2: such as EQ, compression, flange, phaser, chorus, echo/delay, reverb, +swh-plugins-lv2: tube amp simulation, etc. 93 plugins are included (too many to list +swh-plugins-lv2: here). swh-plugins-lv2: swh-plugins-lv2: swh-plugins-lv2: diff --git a/audio/swh-plugins-lv2/swh-plugins-lv2.SlackBuild b/audio/swh-plugins-lv2/swh-plugins-lv2.SlackBuild index c282919130cc..888b25dd95f3 100644 --- a/audio/swh-plugins-lv2/swh-plugins-lv2.SlackBuild +++ b/audio/swh-plugins-lv2/swh-plugins-lv2.SlackBuild @@ -6,11 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211203 bkw: BUILD=2, improve README, slack-desc. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=swh-plugins-lv2 VERSION=${VERSION:-1.0.16} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -24,9 +26,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 @@ -59,11 +58,8 @@ rm -rf $TARNAME-$VERSION tar xvf $CWD/$TARNAME-$VERSION.tar.gz cd $TARNAME-$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 {} \+ if [ "${FORCE_SLACK_CFLAGS:-no}" = "yes" ]; then sed -i 's,-O3.*-funroll-loops,$(SLKCFLAGS),' Makefile @@ -72,8 +68,7 @@ fi make PREFIX=/usr SLKCFLAGS="$SLKCFLAGS" make install-system INSTALL_DIR=$PKG/usr/lib$LIBDIRSUFFIX/lv2 -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +strip $PKG/usr/lib*/lv2/*.lv2/*.so mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a README $PKG/usr/doc/$PRGNAM-$VERSION |