summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f535b4f2a53fb20edea32ed97cb399ebddf323c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pkgname=linvst3
pkgver=1.7.2
pkgver_w2lvst3=2.4
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/LinVst"
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.7/LinVst3-${pkgver}-Debian-Stretch.zip"
        "https://github.com/usrmusicman/ArchStudioUtils/archive/${pkgver_w2lvst3}.zip")
sha256sums=('SKIP'
            'SKIP')

package() {
	cd "${srcdir}/LinVst3-${_pkgver}-Debian-Stretch/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-$pkgver/w2lvst2 $pkgdir/usr/bin/w2lvst2
}