Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: patch for vrvrack2
Submitted on December 6, 2021 at 07:35 PM

New Paste 1 (Text)

--- PKGBUILD-old	2021-12-06 14:15:07.448161484 -0500
+++ PKGBUILD	2021-12-06 14:29:23.431922618 -0500
@@ -2,7 +2,7 @@
 # original PKGBUILD by tsujigiri <[email protected]>
 _pkgname=vcvrack
 pkgname=${_pkgname}-bin
-pkgver=1.1.6
+pkgver=2.0.1
 pkgrel=1
 pkgdesc='Open-source virtual modular synthesizer'
 url='https://vcvrack.com/'
@@ -10,16 +10,17 @@
 arch=(x86_64)
 provides=('vcvrack')
 conflicts=('vcvrack')
-depends=('gtk2' 'alsa-lib' 'libglvnd')
-optdepends=('jack')
-source=("https://vcvrack.com/downloads/Rack-$pkgver-lin.zip"
+depends=('gtk3' 'alsa-lib' 'libglvnd')
+optdepends=('jack: jack 1 support' 'jack2: jack 2 support')
+source=("https://vcvrack.com/downloads/RackFree-$pkgver-lin.zip"
         vcvrack)
-sha256sums=('be610e226b33ef002baf8f58847f238537ed8e334a9f948a5a8828fb258e42c7'
+sha256sums=('83253ca63dade8f5e9aa11533a5bb4ee66e8a6d72b207ca7cc3f85e6637c3901'
             'd98a5e0c8d811aa9edf0040570e5363da712d676b46e82b2c64e8aad4b876417')
 
 package() {
-  mkdir -p "$pkgdir/opt/"
-  cp -R Rack "$pkgdir/opt/$_pkgname"
+  cd "Rack2Free"
+  mkdir -p "$pkgdir/opt/vcvrack"
+  cp -r * "$pkgdir/opt/$_pkgname"
 
-  install -D vcvrack "$pkgdir/usr/bin/vcvrack"
+  install -D "../vcvrack" "$pkgdir/usr/bin/vcvrack"
 }