diff options
author | usrmusicman | 2021-02-23 17:44:35 -0500 |
---|---|---|
committer | usrmusicman | 2021-02-23 17:44:35 -0500 |
commit | 896010c67b2b15b35715318fce9d326c8ec978a1 (patch) | |
tree | 4029c6d4e85c71d071f56285d11c242bfce146c2 | |
parent | 6c6b28853f688b71dcee9306e0fb721f42dc102f (diff) | |
download | aur-896010c67b2b15b35715318fce9d326c8ec978a1.tar.gz |
Update license
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 8 insertions, 4 deletions
@@ -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 @@ -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 } |