pkgname=lv2 pkgver=1.18.10 pkgrel=2 pkgdesc="Successor to the LADSPA audio plug-in standard" url="https://lv2plug.in/" license=('LGPL' 'custom') arch=('x86_64') depends=('python3' 'libsndfile' 'cairo' 'harfbuzz') makedepends=('meson' 'ninja') source=("https://lv2plug.in/spec/${pkgname}-${pkgver}.tar.xz") md5sums=('9c1f3143ea2eea341e8d6e1bad9e5e0e') build() { mkdir -p build cd build meson ../${pkgbase}-${pkgver} \ --prefix=/usr \ --buildtype=release \ -Ddocs=disabled ninja } package() { cd build DESTDIR=${pkgdir} ninja install install -Dm644 ../${pkgbase}-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }