wok view fluidsynth/receipt @ rev 6834

merge
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 21:24:30 2010 +0000 (2010-10-19)
parents
children 69c640a690b5
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 }