pkgname=suil pkgver=0.10.20 pkgrel=1 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" arch=('x86_64') url="https://drobilla.net/software/suil.html" license=('custom:ISC') depends=('lv2' 'qt5-x11extras') makedepends=('python3' 'meson' 'ninja') source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.xz") md5sums=('2c4a47fcb71648430e0762d29d8db032') build() { mkdir -p build cd build meson setup ../${pkgbase}-${pkgver} \ --prefix=/usr \ --buildtype=release \ -Ddocs=disabled \ -Dqt5=enabled ninja } package() { cd build DESTDIR=${pkgdir} ninja install install -Dm644 ../${pkgbase}-${pkgver}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }