# HG changeset patch # User Hans-G?nter Theisgen # Date 1647252761 -3600 # Node ID f5bcefacd1293b5ef7f936e8febc759b6c49b0b6 # Parent 96d99c76c5e90d9f9f73bffd0b6dd9b991448187 updated ladspa and ladspa-dev (1.15 -> 1.17) diff -r 96d99c76c5e9 -r f5bcefacd129 ladspa-dev/receipt --- a/ladspa-dev/receipt Mon Mar 14 09:51:46 2022 +0100 +++ b/ladspa-dev/receipt Mon Mar 14 11:12:41 2022 +0100 @@ -1,20 +1,18 @@ # SliTaz package receipt. PACKAGE="ladspa-dev" -VERSION="1.15" +VERSION="1.17" CATEGORY="development" -SHORT_DESC="ladspa development files." +SHORT_DESC="Ladspa development files." MAINTAINER="jozee@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://www.ladspa.org/" +DEPENDS="ladspa" WANTED="ladspa" -DEPENDS="ladspa" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/include $fs/usr + cook_copy_folders include } diff -r 96d99c76c5e9 -r f5bcefacd129 ladspa/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ladspa/description.txt Mon Mar 14 11:12:41 2022 +0100 @@ -0,0 +1,7 @@ +LADSPA is a standard that allows software audio processors and effects +to be plugged into a wide range of audio synthesis and recording packages. + +For instance, it allows a developer to write a reverb program and bundle +it into a LADSPA "plugin library". +Ordinary users can then use this reverb within any LADSPA-friendly audio +application. Most major audio applications on Linux support LADSPA. diff -r 96d99c76c5e9 -r f5bcefacd129 ladspa/receipt --- a/ladspa/receipt Mon Mar 14 09:51:46 2022 +0100 +++ b/ladspa/receipt Mon Mar 14 11:12:41 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ladspa" -VERSION="1.15" +VERSION="1.17" CATEGORY="multimedia" TAGS="audio multimedia" MAINTAINER="jozee@slitaz.org" @@ -12,8 +12,8 @@ TARBALL="${PACKAGE}_sdk_$VERSION.tgz" WGET_URL="${WEB_SITE}download/$TARBALL" -DEPENDS="gcc-lib-base" -BUILD_DEPENDS="" +DEPENDS="gcc-lib-base libsndfile" +BUILD_DEPENDS="libsndfile-dev" # What is the latest version available today? current_version() @@ -25,13 +25,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src/src + cd src - # not applicable in version 1.15: + # not applicable since version 1.15: # sed -i -e 's/mkdirhier/mkdir -p/' makefile - make -j 1 targets && - make install \ + make targets && + make install \ INSTALL_PLUGINS_DIR=$DESTDIR/usr/lib/ladspa/ \ INSTALL_INCLUDE_DIR=$DESTDIR/usr/include/ \ INSTALL_BINARY_DIR=$DESTDIR/usr/bin/ @@ -40,8 +40,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/$PACKAGE - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE + cook_copy_folders bin + cook_copy_folders lib }