blob: 50c37328b6e8136ef00e4e2c69b3c5feb6f5d6cf (
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
|
# Maintainer: Kyle Bronsdon <kyle at silksow dot com>
# Contributor: Mads Kjeldgaard <mail@madskjeldgaard.dk>
pkgname=linvstmanager-git
pkgver=1.1.1
pkgrel=2
pkgdesc="Graphical companion application for various bridges like LinVst, etc."
arch=('x86_64')
url="https://github.com/Goli4thus/linvstmanager"
license=('GPL')
groups=('pro-audio')
depends=('wine' 'git')
makedepends=('cmake' 'qt5-base')
conflicts=('linvstmanager')
optdepends=('jack' 'linvst-bin' 'linvst3-bin' 'linvst-x-bin' 'linvst3-x-bin')
source=("https://github.com/Goli4thus/linvstmanager/archive/refs/tags/v$pkgver.zip")
md5sums=('36d9540486a95d92b23dd5d6e8ededa7')
build() {
cd "$srcdir/linvstmanager-$pkgver"
mkdir build && cd build
cmake ..
make
}
package() {
cd "$srcdir/linvstmanager-$pkgver/build"
make DESTDIR=${pkgdir} install
}
|