summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobbert van der Helm2020-05-05 14:41:15 +0200
committerRobbert van der Helm2020-05-05 14:41:15 +0200
commit508b5596c597c74d55f194df68d503606b4b3e40 (patch)
treefcf38bc9cd0b0be7720f01b815e78031847972a9
parentf248452ca91dc4f51134af54653136e9f7ab133a (diff)
downloadaur-508b5596c597c74d55f194df68d503606b4b3e40.tar.gz
Add a reminder for users to upgrade their copies
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--yabridge.install7
3 files changed, 11 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ead104b62fc0..d07db27e69d8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = yabridge
pkgdesc = Yet Another VST bridge, run Windows VST2 plugins under Linux
pkgver = 1.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/robbert-vdh/yabridge
+ install = yabridge.install
arch = x86_64
license = GPL3
depends = wine
diff --git a/PKGBUILD b/PKGBUILD
index f115567f4952..245a05d70cd3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=yabridge
pkgver=1.0.0
-pkgrel=1
+pkgrel=2
epoch=
pkgdesc="Yet Another VST bridge, run Windows VST2 plugins under Linux"
arch=('x86_64')
@@ -11,6 +11,7 @@ license=('GPL3')
depends=(wine libxcb lib32-libxcb)
makedepends=()
provides=(yabridge)
+install="yabridge.install"
source=("https://github.com/robbert-vdh/yabridge/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('e95e426734eeee5b28ddb0218f3142e621c0d9acdb1483e93362354c1c2c5790')
diff --git a/yabridge.install b/yabridge.install
new file mode 100644
index 000000000000..f4d106a020e3
--- /dev/null
+++ b/yabridge.install
@@ -0,0 +1,7 @@
+post_upgrade() {
+ cat <<EOF
+If you are upgrading from a previous version of yabridge and you have made
+copies of 'libyabridge.so', then you should not forget to replace those copies
+with new ones.
+EOF
+}