audio/fluidsynth: Updated for version 1.1.5.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Heinz Wiesinger 2011-11-27 14:37:03 -06:00 committed by Niels Horn
parent 15c5ddab18
commit 884f3ff822
3 changed files with 27 additions and 18 deletions

View File

@ -3,4 +3,7 @@ specifications. FluidSynth reads and handles MIDI events from the MIDI
input device. It is the software analogue of a MIDI synthesizer.
FluidSynth can also play midifiles using a Soundfont.
If you want to build support for ladspa plugins, you can pass
LADSPA=yes to the script. That requires ladspa_sdk.
Optional deps are lash, portaudio, and jack-audio-connection-kit.

View File

@ -2,7 +2,7 @@
# Slackware build script for fluidsynth
# Copyright 2008-2010 Heinz Wiesinger, Amsterdam, The Netherlands
# Copyright 2008-2011 Heinz Wiesinger, Amsterdam, The Netherlands
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=fluidsynth
VERSION=1.1.3
VERSION=1.1.5
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -65,20 +65,26 @@ cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--disable-static \
--enable-ladspa=${LADSPA:-no} \
--build=$ARCH-slackware-linux
mkdir build
cd build
cmake \
-DCMAKE_C_FLAGS="$SLKCFLAGS" \
-DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
-DCMAKE_EXE_LINKER_FLAGS="-ltermcap" \
-DCMAKE_SHARED_LINKER_FLAGS="-ltermcap" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_SUFFIX="$LIBDIRSUFFIX" \
-DDOC_INSTALL_DIR="doc" \
-DMAN_INSTALL_DIR="man/man1" \
-Denable-ladspa="${LADSPA:-no}" \
..
make
make install-strip DESTDIR=$PKG
make
make install DESTDIR=$PKG
cd -
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \;

View File

@ -1,8 +1,8 @@
PRGNAM="fluidsynth"
VERSION="1.1.3"
VERSION="1.1.5"
HOMEPAGE="http://www.fluidsynth.org/"
DOWNLOAD="http://downloads.sourceforge.net/fluidsynth/fluidsynth-1.1.3.tar.gz"
MD5SUM="0d3e3cc770b4da413010dfb7dfdce9c8"
DOWNLOAD="http://downloads.sourceforge.net/fluidsynth/fluidsynth-1.1.5.tar.gz"
MD5SUM="657e49e682b316432a4421dbb0313c3e"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Heinz Wiesinger"