wok-next view fluidsynth/receipt @ rev 20779

typo
author Erkan Yilmaz <erkan@slitaz.org>
date Fri Jun 08 09:48:36 2018 +0000 (2018-06-08)
parents fb478984fbc8
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fluidsynth"
4 VERSION="1.1.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://www.fluidsynth.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/FluidSynth/fluidsynth/archive/v$VERSION.tar.gz"
14 BUILD_DEPENDS="cmake ladspa-dev glib-dev libsndfile-dev pulseaudio-dev \
15 alsa-lib-dev jack-dev dbus-dev readline-dev"
16 SPLIT="fluidsynth-dev"
18 compile_rules() {
19 mkdir build
20 cd build
21 cmake \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 -Denable-ladspa=1 \
24 .. &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 fluidsynth)
32 copy @std
33 DEPENDS="alsa-lib pulseaudio dbus glib jack libsndfile ncurses \
34 readline ladspa"
35 TAGS="synthesizer audio multimedia"
36 ;;
37 *-dev)
38 copy @dev
39 ;;
40 esac
41 }