wok annotate fluidsynth/receipt @ rev 22320
updated yaml and yaml-dev (0.1.4 -> 0.2.2)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Nov 14 16:00:22 2019 +0100 (2019-11-14) |
parents | 10cf9ef87cc1 |
children | 61d28e8be66c |
rev | line source |
---|---|
jozee@6827 | 1 # SliTaz package receipt. |
jozee@6827 | 2 |
jozee@6827 | 3 PACKAGE="fluidsynth" |
Hans-G?nter@20929 | 4 VERSION="2.0.4" |
jozee@6827 | 5 CATEGORY="multimedia" |
Hans-G?nter@20929 | 6 TAGS="synthesizer audio multimedia" |
jozee@6827 | 7 MAINTAINER="jozee@slitaz.org" |
pascal@15004 | 8 LICENSE="LGPL2" |
jozee@6827 | 9 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." |
jozee@6827 | 10 WEB_SITE="http://www.fluidsynth.org/" |
Hans-G?nter@20929 | 11 |
Hans-G?nter@20929 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@20929 | 13 WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" |
Hans-G?nter@20929 | 14 |
slaxemulator@6932 | 15 DEPENDS="glib jack-audio-connection-kit ladspa" |
Hans-G?nter@20930 | 16 BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config" |
jozee@6827 | 17 |
jozee@6827 | 18 # Rules to configure and make the package. |
jozee@6827 | 19 |
pascal@19707 | 20 compile_rules() |
pascal@19707 | 21 { |
pascal@19707 | 22 export LDFLAGS="$LDFLAGS -ltinfo" |
Hans-G?nter@20929 | 23 mkdir build |
Hans-G?nter@20929 | 24 cd build |
Hans-G?nter@20929 | 25 cmake -D CMAKE_INSTALL_PREFIX=/usr .. && |
Hans-G?nter@20929 | 26 make -j 1 && |
pascal@19707 | 27 make DESTDIR=$DESTDIR install |
jozee@6827 | 28 } |
jozee@6827 | 29 |
jozee@6827 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@6827 | 31 genpkg_rules() |
jozee@6827 | 32 { |
jozee@6827 | 33 mkdir -p $fs/usr/lib |
pascal@15004 | 34 cp -a $install/usr/bin $fs/usr |
pascal@15004 | 35 cp -a $install/usr/lib/*so* $fs/usr/lib/ |
jozee@6827 | 36 |
jozee@6827 | 37 } |