blob: aa7ba7746155805ad9cb93804a0e8dee12de1162 (
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
|
# Maintainer: Christopher Arndt <aur -at- chrisarndt -dot- de>
pkgname=cchorus
_plugin_uri="https://chrisarndt.de/plugins/$pkgname"
pkgver=2.2.0
pkgrel=1
pkgdesc='A versatile stereo chorus, multi-format audio effect plugin'
arch=(x86_64 aarch64)
url="https://github.com/SpotlightKid/$pkgname"
license=(MIT)
depends=(gcc-libs glibc)
checkdepends=(kxstudio-lv2-extensions lv2lint)
optdepends=(
'clap-host: for loading the CLAP plugin'
'ladspa-host: for loading the LADSPA plugin'
'lv2-host: for loading the LV2 plugin'
'vst-host: for loading the VST2 plugin'
'vst3-host: for loading the VST3 plugin'
)
groups=(clap-plugins ladspa-plugins lv2-plugins pro-audio vst-plugins vst3-plugins)
source=("https://github.com/SpotlightKid/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-source.tar.gz")
sha256sums=('c5913aebc49fca27c02e623322521d146f04c0a0d016b595077fc4a6e4e3ba10')
build() {
cd $pkgname-$pkgver
make
}
check() {
cd $pkgname-$pkgver
make lv2lint
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" PREFIX=/usr install
install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname
}
|