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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# Maintainer: Phil A. <flying-sheep@web.de>
# Maintainer: Florian Hülsmann <fh@cbix.de>
# Contributor: David Runge <dave@sleepmap.de>
# Contributor: Adrain Sinclair <adrian at adrusi dot com>
# Contributor: Miroslav Koškár <http://mkoskar.com/>
_name=Rack
pkgname=vcvrack
pkgver=2.2.0
pkgrel=2
pkgdesc='Open-source Eurorack modular synthesizer simulator'
url='https://vcvrack.com/'
license=(custom CCPL GPL3)
arch=(x86_64 aarch64)
_plugin_name=Fundamental
_plugin_ver=2.3.1
_plugin_pkg=$pkgname-${_plugin_name,,}
depends=(glfw-x11 jansson)
makedepends=(curl gendesk glew jq libarchive openssl rtaudio rtmidi simde speexdsp zstd)
provides=("$_plugin_pkg=$_plugin_ver")
conflicts=($_plugin_pkg)
groups=(pro-audio)
# use submodule_commits.sh to update this
_submodules=(filesystem fuzzysearchdatabase nanosvg nanovg osdialog oui-blendish pffft tinyexpr)
_commits=(7e37433 a3a1bf5 25241c5 0bebdb3 21b9dcc 2fc6405 74d7261 4e8cc00)
source=(
"$pkgname-$pkgver.tar.gz::https://github.com/VCVRack/$_name/archive/v$pkgver.tar.gz"
'https://github.com/VCVRack/Rack/commit/ac73ef4.patch'
"filesystem-${_commits[0]}.tar.gz::https://github.com/gulrak/filesystem/archive/${_commits[0]}.tar.gz"
"fuzzysearchdatabase-${_commits[1]}.tar.gz::https://bitbucket.org/j_norberg/fuzzysearchdatabase/get/${_commits[1]}.tar.gz"
"nanosvg-${_commits[2]}.tar.gz::https://github.com/memononen/nanosvg/archive/${_commits[2]}.tar.gz"
"nanovg-${_commits[3]}.tar.gz::https://github.com/VCVRack/nanovg/archive/${_commits[3]}.tar.gz"
"osdialog-${_commits[4]}.tar.gz::https://github.com/AndrewBelt/osdialog/archive/${_commits[4]}.tar.gz"
"oui-blendish-${_commits[5]}.tar.gz::https://github.com/VCVRack/oui-blendish/archive/${_commits[5]}.tar.gz"
"pffft-${_commits[6]}.tar.gz::https://bitbucket.org/jpommier/pffft/get/${_commits[6]}.tar.gz"
"tinyexpr-${_commits[7]}.tar.gz::https://github.com/codeplea/tinyexpr/archive/${_commits[7]}.tar.gz"
"$_plugin_pkg-$_plugin_ver.tar.gz::https://github.com/VCVRack/$_plugin_name/archive/v$_plugin_ver.tar.gz"
'plugins.patch'
'vcvrack.sh'
'profile.sh'
'trademark.eml'
'aarch64.patch'
)
sha256sums=('d6d4ffdb0afa6a1487410ca4cb891b55cd72be4d184c50e6ccf35929e3c0555c'
'ad431dfed9655e5af202403ef9e61d4b68d0861b2fe5de5a724242cac0a3eef5'
'15e1dacd2a52d7cf67afcc548cc92b218f88a2726488e50887922e86c1493f68'
'b706605c539dcc0953d2e5c59bec015275a576110125f9e8bc7c7dee75ec6b12'
'd957259360bf108858388bb01686a8cb0fc31d90db2d996ddf65575b37bb20d4'
'043d67b2fd81d52b80c5db366292a8d1910a70abdf0b3cc7750bd8705cf5fb96'
'da6c2b5cd661dd1875af867e02bac4dee4e2db7ea6ed3e8a7fd840223d7ce642'
'f5c5a814b3302ac865ab648ec69f586b67cc0e9d2e51f77bcd4f495e75af6930'
'ca077ad436bcb5ffe579ee886b8e61c87e2ebd81fc762be02a9ca07235e219ff'
'2d63d882e6b36f808e0ec739ad796fc44aa1595146e1914a4a80ce5670a2d2c0'
'50fdd488ac51b0a32601eaf0ea0fca73180862408c9c9bd8c0ab439ac2abf655'
'd0d847a5dff1b8c1bfde209c8cf265096d0feb7e07e50b100b452be8cee1c9d6'
'21ac35c6ad4e5a29c32939b17baaf7ac1936077eda2214e28675eefcf2021db8'
'e1da6ccf04bae3a2101151fec7ddd32e48ff92b0a1146b559fd3221c778d521f'
'1159629aa90abb7c972c0f630d55d018b88a6b3bc3ff0bb9466cc06982f38641'
'd2ac3b5b89043ac40f28ccf13ca02156f5f34e9facc9b3d70ccf1b412b60bd55')
# extract the submodules ourselves so we have control over the unpacked top-level directory name
noextract=($(for _i in ${!_submodules[@]}; do
echo "${_submodules[$_i]}-${_commits[$_i]}.tar.gz"
done))
prepare() {
cd $_name-$pkgver
echo noextract ${noextract[@]}
# extract submodules
for _i in ${!_submodules[@]}; do
bsdtar -xf ../${_submodules[$_i]}-${_commits[$_i]}.tar.gz -C dep/${_submodules[$_i]} --strip-components 1
done
# add target to only build included dependencies
echo 'includes: $(nanovg) $(nanosvg) $(osdialog) $(oui-blendish) $(fuzzysearchdatabase) $(ghcfilesystem) $(pffft) $(tinyexpr)' >> dep/Makefile
# revert recent changes to rtaudio.cpp that require an unreleased version of rtaudio
patch -Rp1 -r - -i ../ac73ef4.patch || true
# support building plugins and loading system-wide plugins
patch -p1 -i ../plugins.patch
# support aarch64
patch -p1 -i ../aarch64.patch
gendesk -f -n \
--pkgname $pkgname \
--name "VCV Rack" \
--exec Rack \
--pkgdesc "$pkgdesc" \
--genericname "Virtual modular synthesizer" \
--categories "AudioVideo;Audio"
}
build() {
cd $_name-$pkgver
_ldflags="-shared -ldl \
$(pkg-config --libs glew \
glfw3 jansson libcurl openssl \
libarchive libzstd speexdsp \
samplerate rtmidi rtaudio)"
VERSION=$pkgver make -C dep includes
VERSION=$pkgver make LDFLAGS+="$_ldflags" STANDALONE_LDFLAGS="$LDFLAGS"
cd ../$_plugin_name-$_plugin_ver
VERSION=$_plugin_ver RACK_DIR=../$_name-$pkgver \
LDFLAGS+=" $(pkg-config --libs samplerate)" make dist
}
package() {
# Rack does not start with glfw-wayland
depends+=(libcurl.so libGLEW.so libarchive.so libcrypto.so librtaudio.so librtmidi.so
libsamplerate.so libspeexdsp.so zenity)
cd $_name-$pkgver
install -vDm755 Rack -t "$pkgdir"/usr/lib/$pkgname
install -vDm755 libRack.so -t "$pkgdir"/usr/lib
install -vDm755 "$srcdir"/vcvrack.sh "$pkgdir"/usr/bin/Rack
install -vDm644 template.vcv Core.json cacert.pem -t "$pkgdir"/usr/lib/$pkgname
# resources
cp -dr --preserve=mode res -t "$pkgdir"/usr/lib/$pkgname
# headers (required for plugins)
for _path in {app,dsp,engine,plugin,simd,ui,widget,window}; do
install -vDm644 include/$_path/* \
-t "$pkgdir"/usr/include/$pkgname/$_path
done
install -vDm644 include/*.hpp -t "$pkgdir"/usr/include/$pkgname
install -vDm644 dep/include/*.h -t "$pkgdir"/usr/include/$pkgname/dep
# Makefile snippets required for plugins
install -vDm644 {arch,compile,dep,plugin}.mk -t "$pkgdir"/usr/share/$pkgname
# xdg desktop integration
install -vDm644 $pkgname.desktop -t "$pkgdir"/usr/share/applications/
install -vDm644 res/icon.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
# licenses
install -vDm644 LICENSE.md "$srcdir"/trademark.eml -t "$pkgdir"/usr/share/licenses/$pkgname
# Fundamental plugin
cd ../$_plugin_name-$_plugin_ver
install -d "$pkgdir"/usr/lib/$pkgname/plugins
cp -a dist/$_plugin_name -t "$pkgdir"/usr/lib/$pkgname/plugins
# RACK_DIR environment variable
install -vDm644 "$srcdir"/profile.sh "$pkgdir"/etc/profile.d/$pkgname.sh
}
|