Date: Friday, February 7, 2020 @ 14:09:56 Author: dvzrv Revision: 563721
upgpkg: lsp-plugins 1.1.13-2: Quoting all variables. Replacing makpkg-internal print functionality with standard echo. Modified: lsp-plugins/trunk/PKGBUILD ----------+ PKGBUILD | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-02-07 13:47:19 UTC (rev 563720) +++ PKGBUILD 2020-02-07 14:09:56 UTC (rev 563721) @@ -1,15 +1,16 @@ # Maintainer: David Runge <[email protected]> + pkgname=lsp-plugins pkgver=1.1.13 -pkgrel=1 +pkgrel=2 pkgdesc="Collection of free plugins compatible with LADSPA, LV2 and LinuxVST" arch=('x86_64') url="https://lsp-plug.in" license=('LGPL3') groups=('ladspa-plugins' 'lv2-plugins' 'pro-audio' 'vst-plugins') -depends=('cairo' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libglvnd' 'libsndfile' 'libx11') -makedepends=('gendesk' 'imagemagick' 'ladspa' 'libjack.so' 'lv2' 'php') -optdepends=('libjack.so: for standalone applications') +depends=('cairo' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libglvnd' 'libx11') +makedepends=('gendesk' 'imagemagick' 'ladspa' 'jack' 'libsndfile' 'lv2' 'php') +optdepends=('jack: for standalone applications') source=("https://github.com/sadko4u/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz" "${pkgname}.directory" "${pkgname}.menu") @@ -330,20 +331,21 @@ local _test_path="$(pwd)/.build-test" cd "$pkgname-$pkgver" make - make OBJDIR=${_test_path} clean - make OBJDIR=${_test_path} test + make OBJDIR="${_test_path}" clean + make OBJDIR="${_test_path}" test } check() { local _test_path="$(pwd)/.build-test" cd "$pkgname-$pkgver" - ${_test_path}/lsp-plugins-test utest \ + "${_test_path}/lsp-plugins-test" utest \ --nofork \ --debug \ - --verbose || warning "Known flaky test: https://github.com/sadko4u/lsp-plugins/issues/19" + --verbose || echo "Known flaky test: https://github.com/sadko4u/lsp-plugins/issues/19" } package() { + depends+=('libsndfile.so') cd "$pkgname-$pkgver" make BIN_PATH=/usr/bin \ LIB_PATH=/usr/lib \
