summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorusrmusicman2021-02-23 17:44:35 -0500
committerusrmusicman2021-02-23 17:44:35 -0500
commit896010c67b2b15b35715318fce9d326c8ec978a1 (patch)
tree4029c6d4e85c71d071f56285d11c242bfce146c2
parent6c6b28853f688b71dcee9306e0fb721f42dc102f (diff)
downloadaur-896010c67b2b15b35715318fce9d326c8ec978a1.tar.gz
Update license
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ec2538e6ed0f..d83e24825926 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = overtone-wpc
pkgdesc = OvertoneDSP Workstation Plugin Suite.
pkgver = 201904
- pkgrel = 2
+ pkgrel = 3
url = https://www.overtonedsp.co.uk/download/download_wpc/
arch = x86_64
groups = pro-audio
diff --git a/PKGBUILD b/PKGBUILD
index 1f0b1ad274cf..95850cc297eb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=overtone-wpc
pkgver=201904
-pkgrel=2
+pkgrel=3
pkgdesc="OvertoneDSP Workstation Plugin Suite."
arch=('x86_64')
url="https://www.overtonedsp.co.uk/download/download_wpc/"
@@ -46,7 +46,11 @@ package() {
done
## License Files
- for license in AF-210 DYN-500 EQ-500 PTC-2A PTM-5A RVB-500; do
- install -Dm644 "$srcdir/license_key_$license" "$pkgdir/usr/local/share/license_key_$license"
+ for _license in AF-210 DYN-500 EQ-500 PTC-2A PTM-5A RVB-500; do
+ if [ -f "$srcdir/license_key_${_license}" ]; then
+ install -Dm644 "$srcdir/license_key_${_license}" "$pkgdir/usr/local/share/license_key_${_license}"
+ else
+ echo "Please put license_key_harrison_${_license}.txt in the `xdg-user-dir DOWNLOAD` directory in order to activate OvertoneDSP ${_license^^} plugin."
+ fi
done
}