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