# HG changeset patch # User Hans-G?nter Theisgen # Date 1645799561 -3600 # Node ID 2c2eb93bb1945cce7ca702f2e707e097fab86c6c # Parent 46a25aedececd7b3b87c0d4c22946a4fc06c7eed updated fluidsynth and fluidsynth-dev (2.1.0 -> 2.2.5) diff -r 46a25aedecec -r 2c2eb93bb194 fluidsynth-dev/receipt --- a/fluidsynth-dev/receipt Fri Feb 25 15:09:26 2022 +0100 +++ b/fluidsynth-dev/receipt Fri Feb 25 15:32:41 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="fluidsynth-dev" -VERSION="2.1.0" +VERSION="2.2.5" CATEGORY="development" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2" SHORT_DESC="Fluidsynth development files." -WEB_SITE="http://www.fluidsynth.org/" +WEB_SITE="https://www.fluidsynth.org/" DEPENDS="fluidsynth pkg-config" WANTED="fluidsynth" @@ -14,9 +14,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - -# cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r 46a25aedecec -r 2c2eb93bb194 fluidsynth/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fluidsynth/description.txt Fri Feb 25 15:32:41 2022 +0100 @@ -0,0 +1,6 @@ +FluidSynth is a real-time software synthesizer based on the +SoundFont 2 specifications and has reached widespread distribution. +FluidSynth itself does not have a graphical user interface, but +due to its powerful API several applications utilize it and it has +even found its way onto embedded systems and is used in some mobile +applications. diff -r 46a25aedecec -r 2c2eb93bb194 fluidsynth/receipt --- a/fluidsynth/receipt Fri Feb 25 15:09:26 2022 +0100 +++ b/fluidsynth/receipt Fri Feb 25 15:32:41 2022 +0100 @@ -1,18 +1,18 @@ # SliTaz package receipt. PACKAGE="fluidsynth" -VERSION="2.1.0" +VERSION="2.2.5" CATEGORY="multimedia" TAGS="synthesizer audio multimedia" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2" SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." -WEB_SITE="http://www.fluidsynth.org/" +WEB_SITE="https://www.fluidsynth.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" -DEPENDS="glib jack-audio-connection-kit ladspa" +DEPENDS="glib jack-audio-connection-kit ladspa libdb" BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config" @@ -27,18 +27,17 @@ { export LDFLAGS="$LDFLAGS -ltinfo" - mkdir build - cd build - cmake -D CMAKE_INSTALL_PREFIX=/usr .. && - make -j 1 && - make DESTDIR=$DESTDIR install + mkdir _build + cd _build + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }