wok view fluidsynth/receipt @ rev 11466

snort-mysql: add flex to build_depends
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 17 11:45:19 2011 +0100 (2011-12-17)
parents e4c453a0ecd1
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="fluidsynth"
4 VERSION="1.1.3"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
8 WEB_SITE="http://www.fluidsynth.org/"
9 DEPENDS="glib jack-audio-connection-kit ladspa"
10 BUILD_DEPENDS="glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$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 DESTDIR=$DESTDIR 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 }