File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # jc103
4
+
5
+ cd $ZYNTHIAN_SW_DIR /plugins
6
+
7
+ if [ -d " jc103" ]; then
8
+ rm -rf jc103
9
+ fi
10
+
11
+ git clone --recursive https://github.com/midilab/jc303.git
12
+ cd jc303
13
+ cmake -B build
14
+ cmake --build build --config Release
15
+ mv ./build/JC303_artefacts/LV2/JC303.lv2 $ZYNTHIAN_PLUGINS_DIR /lv2
16
+
17
+ cd ..
18
+ rm -rf jc103
19
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ BASE_URL_DOWNLOAD=" https://os.zynthian.org/plugins/aarch64"
4
+
5
+ cd $ZYNTHIAN_PLUGINS_DIR /lv2
6
+
7
+ wget " $BASE_URL_DOWNLOAD /jc103.lv2.tar.xz"
8
+ tar xfv " jc103.lv2.tar.xz"
9
+ rm -f " jc103.lv2.tar.xz"
Original file line number Diff line number Diff line change @@ -573,6 +573,12 @@ if [[ "$current_patchlevel" < "$patchlevel" ]]; then
573
573
$ZYNTHIAN_RECIPE_DIR /install_lv2_jalv_asyncli.sh
574
574
fi
575
575
576
+ patchlevel=" 20241222.1"
577
+ if [[ " $current_patchlevel " < " $patchlevel " ]]; then
578
+ echo " Applying patch $patchlevel ..."
579
+ $ZYNTHIAN_RECIPE_DIR /install_jc103_prebuilt.sh
580
+ fi
581
+
576
582
# -----------------------------------------------------------------------------
577
583
# End of patches section
578
584
# -----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments