summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobbert van der Helm2020-12-29 22:13:22 +0100
committerRobbert van der Helm2020-12-29 22:13:52 +0100
commitdcfe1adb80823abbd587376801dda5186380eb5f (patch)
tree5a5c8f7b8a5b71c16c011e2bef9513d69e019fdb
parent305c076c87172f731f2e304ac050dae2cd05d42d (diff)
downloadaur-dcfe1adb80823abbd587376801dda5186380eb5f.tar.gz
Update for the merge of feature/vst3
`libyabridge.so` is now called `libyabridge-vst2.so`, and `libyabridge-vst3.so` is new.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 48f32ca2e3a3..b6d3ae1a48fe 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = yabridge-git
pkgdesc = Yet Another VST bridge, run Windows VST2 plugins under Linux
- pkgver = 2.2.1.r0.g42c484b
- pkgrel = 2
+ pkgver = 2.2.1.r468.g775ed62
+ pkgrel = 1
url = https://github.com/robbert-vdh/yabridge
install = yabridge.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 37102ef6ba23..a05785708f6b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
pkgname=yabridge-git
_pkgname=yabridge
-pkgver=2.2.1.r0.g42c484b
-pkgrel=2
+pkgver=2.2.1.r468.g775ed62
+pkgrel=1
pkgdesc="Yet Another VST bridge, run Windows VST2 plugins under Linux"
arch=('x86_64')
url="https://github.com/robbert-vdh/yabridge"
@@ -40,6 +40,7 @@ build() {
# If you don't want to build lib32-boost-libs and you don't need the 32-bit
# bitbridge, then you can leave out the dependency for it and set the
# `use-bitbridge` option to false.
+ # You can also add `-Dwith-vst3=false` to disable building with VST3 support.
meson setup --cross-file cross-wine.conf --buildtype=release -Dwith-bitbridge=true build
ninja -C build
@@ -53,7 +54,7 @@ package() {
install yabridge-{host,group}-32.exe{,.so} "${pkgdir}"/usr/bin
install -dm755 "${pkgdir}"/usr/lib
- install libyabridge.so "${pkgdir}"/usr/lib
+ install libyabridge-{vst2,vst3}.so "${pkgdir}"/usr/lib
}
# vim:set ts=2 sw=2 et: