# Maintainer: Alexandros Theodotou pkgname=zrythm pkgver=0.5.120 pkgrel=1 pkgdesc="An highly automated, intuitive, Digital Audio Workstation (DAW)" arch=( 'x86_64' ) url='https://git.zrythm.org/cgit/zrythm' license=( 'GPL3' ) depends=('gtk3' 'lv2' 'lilv' 'libx11' 'jack' 'libsndfile' 'libyaml' 'gettext' 'qt5-base' 'libsamplerate' 'alsa-lib' 'portaudio' 'ladspa' 'fftw') makedepends=('python' 'gettext' 'sed' 'meson' 'ninja') conflicts=( 'zrythm-git' ) source=( "http://git.savannah.nongnu.org/cgit/zrythm.git/snapshot/$pkgname-$pkgver.tar.gz" ) md5sums=( '8c0e69ae2f19807e3546bc5781b5d025' ) rootdir="${pkgname}-${pkgver}" build() { cd ${rootdir}/ mkdir -p build cd build && meson --prefix=/usr .. -Denable_tests=true ninja } check() { cd ${rootdir}/ cd build && ninja test } package() { cd ${rootdir}/ cd build && DESTDIR="${pkgdir}/" ninja install }