wok view fluidsynth/receipt @ rev 13481

busybox: use slitaz-base httphelper.sh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 11 13:43:57 2012 +0200 (2012-10-11)
parents af59b5551936
children a00bf44ed23d
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 $CONFIGURE_ARGS &&
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 }