Skip to content

Instantly share code, notes, and snippets.

Created January 31, 2018 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/31f22875a29f8a8a73c075b5fd36222a to your computer and use it in GitHub Desktop.
Save anonymous/31f22875a29f8a8a73c075b5fd36222a to your computer and use it in GitHub Desktop.
linvst-git PKGBUILD
pkgname=LinVst
pkgver="git"
pkgrel=1
pkgdesc="enables Windows vst'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' 'steinberg-vst36')
makedepends=('git' 'gcc' 'make')
source=("git+https://github.com/osxmidi/LinVst.git")
md5sums=('SKIP')
build() {
cd "${srcdir}/LinVst"
make -f Makefile CXX_FLAGS='-I/usr/include/vst36/' BUILD_FLAGS_WIN+='$(CXX_FLAGS)'
}
package() {
install -D -m755 "${srcdir}/LinVst/lin-vst-server.exe" "${pkgdir}/usr/bin/lin-vst-server.exe"
install -D -m755 "${srcdir}/LinVst/lin-vst-server.exe.so" "${pkgdir}/usr/bin/lin-vst-server.exe.so"
install -D -m755 "${srcdir}/LinVst/linvst.so" "${pkgdir}/usr/bin/linvst.so"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment