summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b395d2b27a0325b32abb5a08acdc9099ecc6d869 (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
25
26
27
28
29
pkgname=linvst2
pkgver=2.6.5
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' 'python>=3.7')
conflicts=('linvst' 'linvst-stable')
replaces=('linvst' 'linvst-stable')
source=("https://github.com/osxmidi/LinVst/releases/download/2.65/LinVst-64bit-32bit_${pkgver}.deb"
        "w2lvst2")
sha256sums=('SKIP'
            'SKIP')

package() {
    cd "${srcdir}"
    
    ## Unpack Contents
    tar -xzf data.tar.gz
    
    ## Remove GUI Linker Programss
    rm $srcdir/usr/bin/linvstconvert*
    
    ## Copy Files
    cp -r $srcdir/usr $pkgdir/usr
    
    ## Install CLI Linker Program (Python3)
    install -Dm755 w2lvst2 $pkgdir/usr/bin/w2lvst2
}