wok view fluidsynth/receipt @ rev 22980

updated kamailio again (4.4.4 -> 5.3.2)
author Hans-G?nter Theisgen
date Sat Feb 29 16:45:43 2020 +0100 (2020-02-29)
parents b36234b8bc3b
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="fluidsynth"
4 VERSION="2.1.0"
5 CATEGORY="multimedia"
6 TAGS="synthesizer audio multimedia"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL2"
9 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
10 WEB_SITE="http://www.fluidsynth.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz"
15 DEPENDS="glib jack-audio-connection-kit ladspa"
16 BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev
17 pkg-config"
19 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export LDFLAGS="$LDFLAGS -ltinfo"
25 mkdir build
26 cd build
27 cmake -D CMAKE_INSTALL_PREFIX=/usr .. &&
28 make -j 1 &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*so* $fs/usr/lib
39 }