wok view fluidsynth/receipt @ rev 18757

syslinux: compress c32 modules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 29 08:59:31 2015 +0100 (2015-12-29)
parents b7319995b37e
children a68c5c8d5ff2
line source
1 # SliTaz package receipt.
3 PACKAGE="fluidsynth"
4 VERSION="1.1.3"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2"
8 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
9 WEB_SITE="http://www.fluidsynth.org/"
10 DEPENDS="glib jack-audio-connection-kit ladspa"
11 BUILD_DEPENDS="glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 TAGS="synthesizer audio multimedia"
16 # Rules to configure and make the package.
18 compile_rules() {
19 cd $src
20 ./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*so* $fs/usr/lib/
32 }