Date: Monday, April 13, 2020 @ 21:17:56 Author: dvzrv Revision: 613751
upgpkg: mephisto.lv2 0.8.8-1: Upgrading to 0.8.8. Removing non-required packgaes from depends. Adding sodeps in package() and the respective packages in makedepends. Running lv2lint against the entire plugin bundle. Modified: mephisto.lv2/trunk/PKGBUILD ----------+ PKGBUILD | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-04-13 21:17:29 UTC (rev 613750) +++ PKGBUILD 2020-04-13 21:17:56 UTC (rev 613751) @@ -1,7 +1,7 @@ # Maintainer: David Runge <[email protected]> pkgname=mephisto.lv2 -pkgver=0.6.0 +pkgver=0.8.8 pkgrel=1 pkgdesc="A Just-in-Time FAUST compiler embedded in an LV2 plugin" arch=('x86_64') @@ -8,12 +8,12 @@ url="https://open-music-kontrollers.ch/lv2/mephisto/" license=('Artistic2.0') groups=('lv2-plugins' 'pro-audio') -depends=('cairo' 'glew' 'glibc' 'glu' 'libevdev' 'libfaust.so' 'libfreetype.so' -'libinput' 'libglvnd' 'libvterm' 'libx11' 'ttf-fira-code') -makedepends=('lv2' 'meson') +depends=('fontconfig' 'glew' 'glibc' 'libevdev' 'libglvnd' 'libvterm' 'libx11' +'ttf-fira-code') +makedepends=('faust' 'glu' 'lv2' 'meson') checkdepends=('lv2lint') source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz") -sha512sums=('4a6f5169da579ec2c55d9b839c836e6d31fc0cf770841a88491c68bc207cb811c9e114f61b5a72a3d3064a25014e6bdf8dc170b240c5bc42b1ae37039e323c93') +sha512sums=('7c07ed64cb665da1f753a67177e0d789ea1ba229b0ea674fad6844bfd03a09c8551e568386ae5ec4192d2beb21dc8472d9cacf851831c149cd43041129d22738') build() { cd "$pkgname-$pkgver" @@ -23,10 +23,15 @@ check() { cd "$pkgname-$pkgver" - ninja -C build test + _plugin_names=('audio_1x1' 'audio_2x2' 'audio_4x4' 'audio_8x8' 'cv_1x1' + 'cv_2x2' 'cv_4x4' 'cv_8x8') + for _plugin in ${_plugin_names[@]}; do + lv2lint -Mpack -I "build/" "http://open-music-kontrollers.ch/lv2/mephisto#${_plugin}" + done } package() { + depends+=('libfaust.so') cd "$pkgname-$pkgver" DESTDIR="${pkgdir}" ninja -C build install # devendoring ttf-fira-code
