# HG changeset patch # User Hans-G?nter Theisgen # Date 1551530494 -3600 # Node ID 10cf9ef87cc1c0f3e899f0d996be7188e2bdb8d7 # Parent 20eb236f6de4639332b880cff06a166a205c3e90 updated fluidsynth and fluidsynth-dev (1.1.3 -> 2.0.4) diff -r 20eb236f6de4 -r 10cf9ef87cc1 fluidsynth-dev/receipt --- a/fluidsynth-dev/receipt Sat Mar 02 13:17:05 2019 +0100 +++ b/fluidsynth-dev/receipt Sat Mar 02 13:41:34 2019 +0100 @@ -1,21 +1,21 @@ # SliTaz package receipt. PACKAGE="fluidsynth-dev" -VERSION="1.1.3" +VERSION="2.0.4" CATEGORY="development" MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2" -SHORT_DESC="fluidsynth devel files" +SHORT_DESC="Fluidsynth development files." WEB_SITE="http://www.fluidsynth.org/" + 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/*.*a $fs/usr/lib cp -a $install/usr/lib/pkgconfig $fs/usr/lib cp -a $install/usr/include $fs/usr } diff -r 20eb236f6de4 -r 10cf9ef87cc1 fluidsynth/receipt --- a/fluidsynth/receipt Sat Mar 02 13:17:05 2019 +0100 +++ b/fluidsynth/receipt Sat Mar 02 13:41:34 2019 +0100 @@ -1,25 +1,29 @@ # SliTaz package receipt. PACKAGE="fluidsynth" -VERSION="1.1.3" +VERSION="2.0.4" 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/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" + DEPENDS="glib jack-audio-connection-kit ladspa" BUILD_DEPENDS="glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAGS="synthesizer audio multimedia" # Rules to configure and make the package. compile_rules() { export LDFLAGS="$LDFLAGS -ltinfo" - ./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS && - make && + mkdir build + cd build + cmake -D CMAKE_INSTALL_PREFIX=/usr .. && + make -j 1 && make DESTDIR=$DESTDIR install }