blob: ab0b4a5668b48f29c7fd6ead23c682da7cdf82bb (
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
|
# Maintainer: OSAMC <https://github.com/osam-cologne/archlinux-proaudio>
# Contributor: Florian Hülsmann <fh@cbix.de>
pkgname=rakarrack-plus
pkgver=1.2.6
pkgrel=1
pkgdesc='Guitar Effects Processor'
arch=(x86_64 aarch64)
url='https://github.com/Stazed/rakarrack-plus'
license=(GPL-2.0-only)
depends=(alsa-utils glibc gcc-libs libx11 libxpm)
makedepends=(cmake fftw fltk jack liblo lv2 libsndfile python)
checkdepends=(lilv lv2lint)
optdepends=('lv2-host: for running LV2 plugins'
'new-session-manager: for NSM support')
groups=(lv2-plugins pro-audio)
source=("$pkgname-$pkgver.tar.gz::https://github.com/Stazed/$pkgname/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('64104c498ed12200241322e39fa7ad8afeac3b29ecd5563c891f94f2d7dc6fa4')
build() {
cmake -B build-$pkgname-$pkgver -S $pkgname-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DEnableSysex=ON -DBuildCarlaPresets=ON \
-Wno-dev
cmake --build build-$pkgname-$pkgver
}
check() {
mkdir -p "$srcdir"/test
DESTDIR="$srcdir"/test make -C build-$pkgname-$pkgver/lv2 install
local _lv2path="$srcdir"/test/usr/lib/lv2
local _plugins=($(LV2_PATH="$_lv2path" lv2ls))
LV2_PATH="$_lv2path":/usr/lib/lv2 lv2lint -Mpack -d -q \
-t "Plugin Symbols" \
${_plugins[@]}
rm -rf "$srcdir"/test
}
package() {
depends+=(libasound.so libfftw3.so libfftw3f.so libfltk.so libfltk_images.so libjack.so liblo.so
libsamplerate.so libsndfile.so)
DESTDIR="$pkgdir" cmake --install build-$pkgname-$pkgver
}
|