wok view fluidsynth/receipt @ rev 22629

updated darkstat (3.0.713 -> 3.0.719)
author Hans-G?nter Theisgen
date Mon Jan 13 07:59:55 2020 +0100 (2020-01-13)
parents 10cf9ef87cc1
children 61d28e8be66c
line source
1 # SliTaz package receipt.
3 PACKAGE="fluidsynth"
4 VERSION="2.0.4"
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 pkg-config"
18 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export LDFLAGS="$LDFLAGS -ltinfo"
23 mkdir build
24 cd build
25 cmake -D CMAKE_INSTALL_PREFIX=/usr .. &&
26 make -j 1 &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*so* $fs/usr/lib/
37 }