summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2c2f9de9c1ef4996d86e33a20b4e9fb6f9601c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=linvst
pkgver=1.7.6
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')
source=("https://github.com/osxmidi/LinVst/releases/download/1.7/LinVst-${pkgver}.zip")
md5sums=('ccb63c6b66d9140437fb74c1b7dc518f')

package() {
  for file in "${srcdir}/LinVst-${pkgver}/embedded-version/"*.{exe,so}; do
     filename=`basename "${file}"`
     install -D -m755 "${file}" "${pkgdir}/usr/bin/${filename}"
  done
}