wok annotate fluidsynth/receipt @ rev 20285
Up libdrm-mach64 (20140830)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Apr 02 10:26:51 2018 +0200 (2018-04-02) |
parents | a00bf44ed23d |
children | 10cf9ef87cc1 |
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 |
pascal@19707 | 18 compile_rules() |
pascal@19707 | 19 { |
pascal@19707 | 20 export LDFLAGS="$LDFLAGS -ltinfo" |
pascal@19707 | 21 ./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS && |
pascal@19707 | 22 make && |
pascal@19707 | 23 make DESTDIR=$DESTDIR install |
jozee@6827 | 24 } |
jozee@6827 | 25 |
jozee@6827 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@6827 | 27 genpkg_rules() |
jozee@6827 | 28 { |
jozee@6827 | 29 mkdir -p $fs/usr/lib |
pascal@15004 | 30 cp -a $install/usr/bin $fs/usr |
pascal@15004 | 31 cp -a $install/usr/lib/*so* $fs/usr/lib/ |
jozee@6827 | 32 |
jozee@6827 | 33 } |