summaryrefslogtreecommitdiffstats
path: root/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild')
-rw-r--r--audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild15
1 files changed, 10 insertions, 5 deletions
diff --git a/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild b/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild
index 5d4e294f2b..384fa08dce 100644
--- a/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild
+++ b/audio/fluidsynth-dssi/fluidsynth-dssi.SlackBuild
@@ -2,15 +2,19 @@
# Slackware build script for fluidsynth-dssi
-# Written by B. Watson (yalhcru@gmail.com)
+# Written by B. Watson (urchlay@slackware.uk)
# 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