diff options
-rw-r--r-- | audio/vcf_plugins/README | 2 | ||||
-rw-r--r-- | audio/vcf_plugins/slack-desc | 8 | ||||
-rw-r--r-- | audio/vcf_plugins/vcf_plugins.SlackBuild | 17 | ||||
-rw-r--r-- | audio/vcf_plugins/vcf_plugins.info | 2 |
4 files changed, 14 insertions, 15 deletions
diff --git a/audio/vcf_plugins/README b/audio/vcf_plugins/README index 5d61ea0313..6b8cd91719 100644 --- a/audio/vcf_plugins/README +++ b/audio/vcf_plugins/README @@ -1,3 +1,5 @@ +vcf_plugins: vcf_plugins (LADSPA equalizer plugins) + LADSPA plugins for audio EQ biquad filters based on the cookbook formulae by Robert Bristow-Johnson. diff --git a/audio/vcf_plugins/slack-desc b/audio/vcf_plugins/slack-desc index 2ef00f1cf5..56fc010eb2 100644 --- a/audio/vcf_plugins/slack-desc +++ b/audio/vcf_plugins/slack-desc @@ -6,14 +6,14 @@ # customary to leave one space after the ':' except on otherwise blank lines. |-----handy-ruler------------------------------------------------------| -vcf_plugins: vcf_plugins (LADSPA plugins) +vcf_plugins: vcf_plugins (LADSPA equalizer plugins) vcf_plugins: vcf_plugins: LADSPA plugins for audio EQ biquad filters based on the cookbook vcf_plugins: formulae by Robert Bristow-Johnson. vcf_plugins: vcf_plugins: The following filters have been implemented: -vcf_plugins: * Two low pass filters * High pass filter * Two band pass filters -vcf_plugins: * Notch filter * Peaking EQ filter * Low shelf filter * High -vcf_plugins: shelf filter vcf_plugins: +vcf_plugins: Two low pass filters, High pass filter, Two band pass filters, +vcf_plugins: Notch filter, Peaking EQ filter, Low shelf filter, High shelf +vcf_plugins: filter vcf_plugins: diff --git a/audio/vcf_plugins/vcf_plugins.SlackBuild b/audio/vcf_plugins/vcf_plugins.SlackBuild index 3cc53833c2..f6c3219d7b 100644 --- a/audio/vcf_plugins/vcf_plugins.SlackBuild +++ b/audio/vcf_plugins/vcf_plugins.SlackBuild @@ -6,11 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211203 bkw: BUILD=2, reformat slack-desc. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=vcf_plugins VERSION=${VERSION:-0.0.5} -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,17 +58,15 @@ rm -rf $SRCNAM-$VERSION tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 cd $SRCNAM-$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 {} \+ sed -i 's/cc -c/gcc -c $(CFLAGS)/' Makefile make CFLAGS="$SLKCFLAGS" mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/ladspa -install -oroot -groot -s -m0755 ${SRCNAM}.so ${SRCNAM}_cv_in.so $PKG/usr/lib$LIBDIRSUFFIX/ladspa/ +install -oroot -groot -s -m0755 ${SRCNAM}.so ${SRCNAM}_cv_in.so \ + $PKG/usr/lib$LIBDIRSUFFIX/ladspa/ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README diff --git a/audio/vcf_plugins/vcf_plugins.info b/audio/vcf_plugins/vcf_plugins.info index 388b5c97fc..236cccd1e4 100644 --- a/audio/vcf_plugins/vcf_plugins.info +++ b/audio/vcf_plugins/vcf_plugins.info @@ -1,6 +1,6 @@ PRGNAM="vcf_plugins" VERSION="0.0.5" -HOMEPAGE="http://web.archive.org/web/20170331170847/http://users.suse.com/~mana/ladspa.html" +HOMEPAGE="https://web.archive.org/web/20170331170847/http://users.suse.com/~mana/ladspa.html" DOWNLOAD="https://slackware.uk/~urchlay/src/vcf-0.0.5.tar.bz2" MD5SUM="7dfbdd040926f925187290c5d12caeae" DOWNLOAD_x86_64="" |