mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
audio/fluidsynth-dssi: Update soundfont path.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f08e912d12
commit
ba4828f1e6
2 changed files with 14 additions and 4 deletions
|
@ -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).
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue