wok-current rev 24703
updated ladspa and ladspa-dev (1.15 -> 1.17)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 14 11:12:41 2022 +0100 (2022-03-14) |
parents | 96d99c76c5e9 |
children | 5ff61bfa6ca2 |
files | ladspa-dev/receipt ladspa/description.txt ladspa/receipt |
line diff
1.1 --- a/ladspa-dev/receipt Mon Mar 14 09:51:46 2022 +0100 1.2 +++ b/ladspa-dev/receipt Mon Mar 14 11:12:41 2022 +0100 1.3 @@ -1,20 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ladspa-dev" 1.7 -VERSION="1.15" 1.8 +VERSION="1.17" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="ladspa development files." 1.11 +SHORT_DESC="Ladspa development files." 1.12 MAINTAINER="jozee@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="https://www.ladspa.org/" 1.15 1.16 +DEPENDS="ladspa" 1.17 WANTED="ladspa" 1.18 1.19 -DEPENDS="ladspa" 1.20 - 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr 1.25 - cp -a $install/usr/include $fs/usr 1.26 + cook_copy_folders include 1.27 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/ladspa/description.txt Mon Mar 14 11:12:41 2022 +0100 2.3 @@ -0,0 +1,7 @@ 2.4 +LADSPA is a standard that allows software audio processors and effects 2.5 +to be plugged into a wide range of audio synthesis and recording packages. 2.6 + 2.7 +For instance, it allows a developer to write a reverb program and bundle 2.8 +it into a LADSPA "plugin library". 2.9 +Ordinary users can then use this reverb within any LADSPA-friendly audio 2.10 +application. Most major audio applications on Linux support LADSPA.
3.1 --- a/ladspa/receipt Mon Mar 14 09:51:46 2022 +0100 3.2 +++ b/ladspa/receipt Mon Mar 14 11:12:41 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="ladspa" 3.7 -VERSION="1.15" 3.8 +VERSION="1.17" 3.9 CATEGORY="multimedia" 3.10 TAGS="audio multimedia" 3.11 MAINTAINER="jozee@slitaz.org" 3.12 @@ -12,8 +12,8 @@ 3.13 TARBALL="${PACKAGE}_sdk_$VERSION.tgz" 3.14 WGET_URL="${WEB_SITE}download/$TARBALL" 3.15 3.16 -DEPENDS="gcc-lib-base" 3.17 -BUILD_DEPENDS="" 3.18 +DEPENDS="gcc-lib-base libsndfile" 3.19 +BUILD_DEPENDS="libsndfile-dev" 3.20 3.21 # What is the latest version available today? 3.22 current_version() 3.23 @@ -25,13 +25,13 @@ 3.24 # Rules to configure and make the package. 3.25 compile_rules() 3.26 { 3.27 - cd $src/src 3.28 + cd src 3.29 3.30 - # not applicable in version 1.15: 3.31 + # not applicable since version 1.15: 3.32 # sed -i -e 's/mkdirhier/mkdir -p/' makefile 3.33 3.34 - make -j 1 targets && 3.35 - make install \ 3.36 + make targets && 3.37 + make install \ 3.38 INSTALL_PLUGINS_DIR=$DESTDIR/usr/lib/ladspa/ \ 3.39 INSTALL_INCLUDE_DIR=$DESTDIR/usr/include/ \ 3.40 INSTALL_BINARY_DIR=$DESTDIR/usr/bin/ 3.41 @@ -40,8 +40,6 @@ 3.42 # Rules to gen a SliTaz package suitable for Tazpkg. 3.43 genpkg_rules() 3.44 { 3.45 - mkdir -p $fs/usr/lib/$PACKAGE 3.46 - 3.47 - cp -a $install/usr/bin $fs/usr 3.48 - cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE 3.49 + cook_copy_folders bin 3.50 + cook_copy_folders lib 3.51 }