diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-05 13:08:15 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:36 +0700 |
commit | ba4828f1e6f2ba020e80e800cb51736a895199f0 (patch) | |
tree | 7379915a111d53022f211d1457a9a562bf13da44 /audio/fluidsynth-dssi | |
parent | f08e912d12405fecda7bd485902f5f0eb499ea48 (diff) |
audio/fluidsynth-dssi: Update soundfont path.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/fluidsynth-dssi')
-rw-r--r-- | audio/fluidsynth-dssi/README | 5 | ||||
-rw-r--r-- | audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/audio/fluidsynth-dssi/README b/audio/fluidsynth-dssi/README index 12a8d5d807f8..24e3f3fdb92c 100644 --- a/audio/fluidsynth-dssi/README +++ b/audio/fluidsynth-dssi/README @@ -1,2 +1,7 @@ +fluidsynth-dssi (DSSI plugin wrapper for FluidSynth) + fluidsynth-dssi is a wrapper for the FluidSynth SoundFont-playing software synthesizer, allowing it to function as a DSSI plugin. + +If you want fluidsynth-dssi to actually make sound, you'll have to +install at least one soundfont (e.g. fluid-soundfont). diff --git a/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild b/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild index 5d4e294f2b8f..8fb0ad9dc231 100644 --- a/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild +++ b/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild @@ -6,11 +6,15 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211205 bkw: BUILD=2 +# - remove .la file. +# - add /usr/share/sounds/sf2 to default soundfont path. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=fluidsynth-dssi VERSION=${VERSION:-1.0.0+20190112_c9b4107} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -22,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 @@ -60,6 +61,9 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ +sed -i '/#define *DEFAULT_SF2PATH/s,:/usr/share/sf2,&:/usr/share/sounds/sf2,' \ + src/locate_soundfont.c + [ -e configure ] || sh autogen.sh CFLAGS="$SLKCFLAGS" \ @@ -75,6 +79,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-strip DESTDIR=$PKG +rm -f $PKG/usr/lib*/dssi/*.la mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION |