wok-undigest annotate fluidsynth/receipt @ rev 59

Add fluidsynth, fluidsynth-dev
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 16 13:04:15 2010 -0400 (2010-04-16)
parents
children
rev   line source
jozee@59 1 # SliTaz package receipt.
jozee@59 2
jozee@59 3 PACKAGE="fluidsynth"
jozee@59 4 VERSION="1.1.1"
jozee@59 5 CATEGORY="multimedia"
jozee@59 6 MAINTAINER="jozee@slitaz.org"
jozee@59 7 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
jozee@59 8 BUILD_DEPENDS=" jack-audio-connection-kit-dev ladspa-dev"
jozee@59 9 WEB_SITE="http://www.fluidsynth.org/"
jozee@59 10 DEPENDS="glib2 jack-audio-connection-kit ladspa"
jozee@59 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@59 12 WGET_URL="http://savannah.nongnu.org/download/fluid/$TARBALL"
jozee@59 13 TAGS="synthesizer audio multimedia"
jozee@59 14
jozee@59 15 # Rules to configure and make the package.
jozee@59 16
jozee@59 17 compile_rules() {
jozee@59 18 cd $src
jozee@59 19 ./configure --prefix=/usr --enable-ladspa &&
jozee@59 20 make &&
jozee@59 21 make prefix=$PWD/_pkg/usr install
jozee@59 22 }
jozee@59 23
jozee@59 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@59 25 genpkg_rules()
jozee@59 26 {
jozee@59 27 mkdir -p $fs/usr/lib
jozee@59 28 cp -a $_pkg/usr/bin $fs/usr
jozee@59 29 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
jozee@59 30
jozee@59 31 }