wok annotate 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
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 }