# HG changeset patch # User Hans-G?nter Theisgen # Date 1579957085 -3600 # Node ID 61d28e8be66c7793f53a1080a3d5f96e7891e0d1 # Parent ec27bdc69711a406b739a4ede9007f4bcce8f919 updated fluidsynth and fluidsynth-dev (2.0.4 -> 2.1.0) diff -r ec27bdc69711 -r 61d28e8be66c fluidsynth-dev/receipt --- a/fluidsynth-dev/receipt Sat Jan 25 13:47:19 2020 +0100 +++ b/fluidsynth-dev/receipt Sat Jan 25 13:58:05 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="fluidsynth-dev" -VERSION="2.0.4" +VERSION="2.1.0" CATEGORY="development" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2" SHORT_DESC="Fluidsynth development files." WEB_SITE="http://www.fluidsynth.org/" +DEPENDS="fluidsynth pkg-config" WANTED="fluidsynth" -DEPENDS="fluidsynth pkg-config" # 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 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r ec27bdc69711 -r 61d28e8be66c fluidsynth/receipt --- a/fluidsynth/receipt Sat Jan 25 13:47:19 2020 +0100 +++ b/fluidsynth/receipt Sat Jan 25 13:58:05 2020 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="fluidsynth" -VERSION="2.0.4" +VERSION="2.1.0" CATEGORY="multimedia" TAGS="synthesizer audio multimedia" MAINTAINER="jozee@slitaz.org" @@ -13,15 +13,17 @@ WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="glib jack-audio-connection-kit ladspa" -BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config" +BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev + pkg-config" # Rules to configure and make the package. compile_rules() { export LDFLAGS="$LDFLAGS -ltinfo" - mkdir build - cd build + + mkdir build + cd build cmake -D CMAKE_INSTALL_PREFIX=/usr .. && make -j 1 && make DESTDIR=$DESTDIR install @@ -31,7 +33,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*so* $fs/usr/lib/ - + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib }