wok diff fluidsynth/receipt @ rev 24969
created recipe for filezilla-lang
author | Hans-G?nter Theisgen |
---|---|
date | Tue Apr 26 13:34:22 2022 +0100 (2022-04-26) |
parents | 5ea0ce1cecc0 |
children | 20ad21d5532c |
line diff
1.1 --- a/fluidsynth/receipt Tue Jun 08 08:46:05 2021 +0000 1.2 +++ b/fluidsynth/receipt Tue Apr 26 13:34:22 2022 +0100 1.3 @@ -1,18 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="fluidsynth" 1.7 -VERSION="2.1.0" 1.8 +VERSION="2.2.5" 1.9 CATEGORY="multimedia" 1.10 TAGS="synthesizer audio multimedia" 1.11 MAINTAINER="jozee@slitaz.org" 1.12 LICENSE="LGPL2" 1.13 SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications." 1.14 -WEB_SITE="http://www.fluidsynth.org/" 1.15 +WEB_SITE="https://www.fluidsynth.org/" 1.16 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 WGET_URL="https://github.com/FluidSynth/$PACKAGE/archive/v$VERSION.tar.gz" 1.19 1.20 -DEPENDS="glib jack-audio-connection-kit ladspa" 1.21 +DEPENDS="glib jack-audio-connection-kit ladspa libdb" 1.22 BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev 1.23 pkg-config" 1.24 1.25 @@ -27,18 +27,17 @@ 1.26 { 1.27 export LDFLAGS="$LDFLAGS -ltinfo" 1.28 1.29 - mkdir build 1.30 - cd build 1.31 - cmake -D CMAKE_INSTALL_PREFIX=/usr .. && 1.32 - make -j 1 && 1.33 - make DESTDIR=$DESTDIR install 1.34 + mkdir _build 1.35 + cd _build 1.36 + cmake .. \ 1.37 + -D CMAKE_INSTALL_PREFIX=/usr && 1.38 + make && 1.39 + make install DESTDIR=$DESTDIR 1.40 } 1.41 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 - mkdir -p $fs/usr/lib 1.46 - 1.47 - cp -a $install/usr/bin $fs/usr 1.48 - cp -a $install/usr/lib/*so* $fs/usr/lib 1.49 + cook_copy_folders bin 1.50 + cook_copy_files *.so* 1.51 }