blob: 704f0106347cf9eb066b58263f1cb592d80c4a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
pkgbase=harrison-mastering-eq
pkgname=("${pkgbase}-vst-bin" "${pkgbase}-vst3-bin")
pkgver=5.0.0.074d2374
pkgrel=5
arch=('x86_64')
url="https://store.harrisonaudio.com/all-products/mastering-eq"
license=('EULA')
depends=('alsa-lib' 'bzip2' 'brotli' 'freetype2' 'glibc' 'graphite' 'harfbuzz' 'keyutils' 'krb5' 'libcurl-gnutls' 'libffi' 'libnghttp2' 'libidn2' 'libp11-kit' 'libpng' 'libpsl' 'libssh2' 'libtasn1' 'libunistring' 'libxau' 'libxcb' 'libx11' 'nettle' 'openssl' 'pcre2' 'zlib' 'zstd')
makedepends=('xdg-user-dirs' 'unzip')
source=("https://softwareupdate.solidstatelogic.com/DownloadManager/InstallersLinux/Harrison_MasteringEQ_v${pkgver}-linux-amd64.tar.gz")
sha256sums=('c88f281aa88bb3e9e146b1b381be58212d2bdbf02743a586328d0853bba688a7')
package_harrison-mastering-eq-vst-bin() {
pkgdesc="Harrison Mastering EQ (VST)"
groups=('pro-audio' "vst-plugins")
conflicts=("harrison-ava-me-vst" "harrison-ava")
provides=("${pkgbase}-vst-bin")
replaces=("harrison-ava-me-vst" "harrison-ava")
install -Dm755 "$srcdir/Harrison_MasteringEQ/vst/Harrison_MasteringEQ.so" "$pkgdir/usr/lib/vst/Harrison_MasteringEQ.so"
}
package_harrison-mastering-eq-vst3-bin() {
pkgdesc="Harrison Mastering EQ (VST3)"
groups=('pro-audio' "vst3-plugins")
install -Dm755 "$srcdir/Harrison_MasteringEQ/vst3/Harrison_MasteringEQ.vst3/Contents/x86_64-linux/Harrison_MasteringEQ.so" "$pkgdir/usr/lib/vst3/Harrison_MasteringEQ.vst3/Contents/x86_64-linux/Harrison_MasteringEQ.so"
}
|