# Maintainer: Felix Golatfoski # Contributor: Alex Mcmillan pkgname=linvst3 pkgver=1.8.2 pkgrel=1 pkgdesc="enables Windows vst3's to be used as Linux vst's in Linux vst capable DAW's" arch=('x86_64') url="https://github.com/osxmidi/LinVst3" depends=('wine' 'freetype2' 'xcb-util' 'xcb-util-cursor' 'xcb-util-keysyms' 'libxkbcommon-x11' 'libx11' 'expat' 'gtkmm3' 'sqlite') makedepends=('git') source=("https://github.com/osxmidi/LinVst3/releases/download/1.8/LinVst3-${pkgver}-Debian-Buster.zip" "git+https://github.com/usrmusicman/ArchStudioUtils.git") sha256sums=('6ba8644872a093959615b3a70817530214a1fb1bfaf98bfaeb803349e912f349' 'SKIP') package() { cd "${srcdir}/LinVst3-${pkgver}-Debian-Buster/embedded/" for file in *.so; do install -Dm755 $file $pkgdir/usr/bin/$file done for file in *.exe; do install -Dm755 $file $pkgdir/usr/bin/$file done install -Dm755 $srcdir/ArchStudioUtils/w2lvst3 $pkgdir/usr/bin/w2lvst3 }