wok-current annotate fluidsynth/receipt @ rev 15753
Up: tazpanel (1.7) Bunch of new stuff and fixes. Well done guys :-)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Jan 03 19:00:33 2014 +0100 (2014-01-03) |
parents | b7319995b37e |
children | a68c5c8d5ff2 |
rev | line source |
---|---|
jozee@6827 | 1 # SliTaz package receipt. |
jozee@6827 | 2 |
jozee@6827 | 3 PACKAGE="fluidsynth" |
slaxemulator@6937 | 4 VERSION="1.1.3" |
jozee@6827 | 5 CATEGORY="multimedia" |
jozee@6827 | 6 MAINTAINER="jozee@slitaz.org" |
pascal@15004 | 7 LICENSE="LGPL2" |
jozee@6827 | 8 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." |
jozee@6827 | 9 WEB_SITE="http://www.fluidsynth.org/" |
slaxemulator@6932 | 10 DEPENDS="glib jack-audio-connection-kit ladspa" |
slaxemulator@6937 | 11 BUILD_DEPENDS="glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config" |
jozee@6827 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
slaxemulator@6938 | 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@6827 | 14 TAGS="synthesizer audio multimedia" |
jozee@6827 | 15 |
jozee@6827 | 16 # Rules to configure and make the package. |
jozee@6827 | 17 |
jozee@6827 | 18 compile_rules() { |
jozee@6827 | 19 cd $src |
gokhlayeh@11573 | 20 ./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS && |
jozee@6827 | 21 make && |
slaxemulator@8398 | 22 make DESTDIR=$DESTDIR install |
jozee@6827 | 23 } |
jozee@6827 | 24 |
jozee@6827 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@6827 | 26 genpkg_rules() |
jozee@6827 | 27 { |
jozee@6827 | 28 mkdir -p $fs/usr/lib |
pascal@15004 | 29 cp -a $install/usr/bin $fs/usr |
pascal@15004 | 30 cp -a $install/usr/lib/*so* $fs/usr/lib/ |
jozee@6827 | 31 |
jozee@6827 | 32 } |