blob: 1bf1cc6de775fb4e0c02cae4b9305fd45f036b50 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: Sam Whited <sam@samwhited.com>
pkgbase='zl-speceq-bin'
pkgname=('zl-speceq-vst3-bin' 'zl-speceq-lv2-bin' 'zl-speceq-bin')
pkgver='0.0.3'
pkgrel=1
pkgdesc='Dynamic spectrum equalizer audio plugin'
arch=('x86_64' 'aarch64')
url='https://zl-audio.github.io/plugins/zlspeceq/'
license=('AGPL-3.0-only')
groups=('pro-audio' 'zl-audio')
depends=(
'alsa-lib'
'libx11'
'libxcomposite'
'libxcursor'
'libxext'
'libxinerama'
'libxrandr'
'libxrender'
'freetype2'
'fontconfig'
'libxi'
)
source_x86_64=("https://github.com/ZL-Audio/ZLSpectrumEqualizer/releases/download/${pkgver}/ZL.Spectrum.Equalizer-${pkgver}-Linux-x86-64-AVX2.zip")
source_aarch64=("https://github.com/ZL-Audio/ZLSpectrumEqualizer/releases/download/${pkgver}/ZL.Spectrum.Equalizer-${pkgver}-Linux-arm64.zip")
sha256sums_x86_64=('a3233f026d51d554fa62c17e4812bf43d54f8e45f698f161605ba540e7e9bfb5')
sha256sums_aarch64=('65f7bcb0d6574d8061f3727a1f0d0e865e8a0dd70f1c0aa24202b32a85c5f13c')
package_zl-speceq-vst3-bin() {
groups+=('vst3-plugins')
pkgdesc+=' (VST3 version)'
mkdir -p "${pkgdir}/usr/lib/vst3/"
cp -r "${srcdir}"/VST3/* "${pkgdir}/usr/lib/vst3"
}
package_zl-speceq-lv2-bin() {
groups+=('lv2-plugins')
pkgdesc+=' (LV2 version)'
mkdir -p "${pkgdir}/usr/lib/lv2/"
cp -r "${srcdir}"/LV2/* "${pkgdir}/usr/lib/lv2"
}
package_zl-speceq-bin() {
pkgdesc+=' (metapackage that requires all plugin formats)'
depends+=('zl-speceq-vst3-bin' 'zl-speceq-lv2-bin')
}
# vim:set ts=2 sw=2 et:
|