wok rev 20929

updated fluidsynth and fluidsynth-dev (1.1.3 -> 2.0.4)
author Hans-G?nter Theisgen
date Sat Mar 02 13:41:34 2019 +0100 (2019-03-02)
parents 20eb236f6de4
children b36234b8bc3b
files fluidsynth-dev/receipt fluidsynth/receipt
line diff
     1.1 --- a/fluidsynth-dev/receipt	Sat Mar 02 13:17:05 2019 +0100
     1.2 +++ b/fluidsynth-dev/receipt	Sat Mar 02 13:41:34 2019 +0100
     1.3 @@ -1,21 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fluidsynth-dev"
     1.7 -VERSION="1.1.3"
     1.8 +VERSION="2.0.4"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="LGPL2"
    1.12 -SHORT_DESC="fluidsynth devel files"
    1.13 +SHORT_DESC="Fluidsynth development files."
    1.14  WEB_SITE="http://www.fluidsynth.org/"
    1.15 +
    1.16  WANTED="fluidsynth"
    1.17 -
    1.18  DEPENDS="fluidsynth pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib
    1.24 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.25 +#	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26  	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27  	cp -a $install/usr/include $fs/usr
    1.28  }
     2.1 --- a/fluidsynth/receipt	Sat Mar 02 13:17:05 2019 +0100
     2.2 +++ b/fluidsynth/receipt	Sat Mar 02 13:41:34 2019 +0100
     2.3 @@ -1,25 +1,29 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="fluidsynth"
     2.7 -VERSION="1.1.3"
     2.8 +VERSION="2.0.4"
     2.9  CATEGORY="multimedia"
    2.10 +TAGS="synthesizer audio multimedia"
    2.11  MAINTAINER="jozee@slitaz.org"
    2.12  LICENSE="LGPL2"
    2.13  SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
    2.14  WEB_SITE="http://www.fluidsynth.org/"
    2.15 +
    2.16 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 +WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz"
    2.18 +
    2.19  DEPENDS="glib jack-audio-connection-kit ladspa"
    2.20  BUILD_DEPENDS="glib-dev jack-audio-connection-kit-dev ladspa-dev pkg-config"
    2.21 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.22 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.23 -TAGS="synthesizer audio multimedia"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  
    2.27  compile_rules()
    2.28  {
    2.29  	export LDFLAGS="$LDFLAGS -ltinfo"
    2.30 -	./configure --prefix=/usr --enable-ladspa $CONFIGURE_ARGS &&
    2.31 -	make &&
    2.32 +	mkdir build
    2.33 +	cd build
    2.34 +	cmake -D CMAKE_INSTALL_PREFIX=/usr .. &&
    2.35 +	make -j 1 &&
    2.36  	make DESTDIR=$DESTDIR install
    2.37  }
    2.38