wok-current rev 24558
updated fluidsynth and fluidsynth-dev (2.1.0 -> 2.2.5)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 25 15:32:41 2022 +0100 (2022-02-25) |
parents | 46a25aedecec |
children | e039d712af3b |
files | fluidsynth-dev/receipt fluidsynth/description.txt fluidsynth/receipt |
line diff
1.1 --- a/fluidsynth-dev/receipt Fri Feb 25 15:09:26 2022 +0100 1.2 +++ b/fluidsynth-dev/receipt Fri Feb 25 15:32:41 2022 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="fluidsynth-dev" 1.7 -VERSION="2.1.0" 1.8 +VERSION="2.2.5" 1.9 CATEGORY="development" 1.10 MAINTAINER="jozee@slitaz.org" 1.11 LICENSE="LGPL2" 1.12 SHORT_DESC="Fluidsynth development files." 1.13 -WEB_SITE="http://www.fluidsynth.org/" 1.14 +WEB_SITE="https://www.fluidsynth.org/" 1.15 1.16 DEPENDS="fluidsynth pkg-config" 1.17 WANTED="fluidsynth" 1.18 @@ -14,9 +14,6 @@ 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 -# cp -a $install/usr/lib/*.*a $fs/usr/lib 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/include $fs/usr 1.27 + cook_copy_folders include 1.28 + cook_copy_folders pkgconfig 1.29 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fluidsynth/description.txt Fri Feb 25 15:32:41 2022 +0100 2.3 @@ -0,0 +1,6 @@ 2.4 +FluidSynth is a real-time software synthesizer based on the 2.5 +SoundFont 2 specifications and has reached widespread distribution. 2.6 +FluidSynth itself does not have a graphical user interface, but 2.7 +due to its powerful API several applications utilize it and it has 2.8 +even found its way onto embedded systems and is used in some mobile 2.9 +applications.
3.1 --- a/fluidsynth/receipt Fri Feb 25 15:09:26 2022 +0100 3.2 +++ b/fluidsynth/receipt Fri Feb 25 15:32:41 2022 +0100 3.3 @@ -1,18 +1,18 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="fluidsynth" 3.7 -VERSION="2.1.0" 3.8 +VERSION="2.2.5" 3.9 CATEGORY="multimedia" 3.10 TAGS="synthesizer audio multimedia" 3.11 MAINTAINER="jozee@slitaz.org" 3.12 LICENSE="LGPL2" 3.13 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." 3.14 -WEB_SITE="http://www.fluidsynth.org/" 3.15 +WEB_SITE="https://www.fluidsynth.org/" 3.16 3.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.18 WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" 3.19 3.20 -DEPENDS="glib jack-audio-connection-kit ladspa" 3.21 +DEPENDS="glib jack-audio-connection-kit ladspa libdb" 3.22 BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev 3.23 pkg-config" 3.24 3.25 @@ -27,18 +27,17 @@ 3.26 { 3.27 export LDFLAGS="$LDFLAGS -ltinfo" 3.28 3.29 - mkdir build 3.30 - cd build 3.31 - cmake -D CMAKE_INSTALL_PREFIX=/usr .. && 3.32 - make -j 1 && 3.33 - make DESTDIR=$DESTDIR install 3.34 + mkdir _build 3.35 + cd _build 3.36 + cmake .. \ 3.37 + -D CMAKE_INSTALL_PREFIX=/usr && 3.38 + make && 3.39 + make install DESTDIR=$DESTDIR 3.40 } 3.41 3.42 # Rules to gen a SliTaz package suitable for Tazpkg. 3.43 genpkg_rules() 3.44 { 3.45 - mkdir -p $fs/usr/lib 3.46 - 3.47 - cp -a $install/usr/bin $fs/usr 3.48 - cp -a $install/usr/lib/*so* $fs/usr/lib 3.49 + cook_copy_folders bin 3.50 + cook_copy_files *.so* 3.51 }