File tree 4 files changed +35
-0
lines changed
4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ cd $ZYNTHIAN_PLUGINS_SRC_DIR
4
+
5
+ # DSP plugin
6
+
7
+ if [-d " neural-amp-modeler-lv2" ]; then
8
+ rm -rf " neural-amp-modeler-lv2"
9
+ fi
10
+
11
+ git clone --recursive https://github.com/brummer10/Ratatouille.lv2.git
12
+ cd Ratatouille.lv2
13
+ make -j 3
14
+ make install
15
+
16
+ cd ..
17
+ rm -rf " Ratatouille.lv2"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ plugins_path = /usr/lib/lv2
4
+ BASE_URL_DOWNLOAD=" https://os.zynthian.org/plugins/aarch64"
5
+
6
+ cd $plugins_path
7
+ rm -rf ./Ratatouille.lv2
8
+ wget " $BASE_URL_DOWNLOAD /Ratatouille.lv2.tar.xz"
9
+ tar xfv Ratatouille.lv2.tar.xz
10
+ rm -f Ratatouille.lv2.tar.xz
Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ $ZYNTHIAN_RECIPE_DIR/install_odin2_prebuilt.sh
130
130
$ZYNTHIAN_RECIPE_DIR /install_argotlunar2_prebuilt.sh
131
131
$ZYNTHIAN_RECIPE_DIR /install_qmidiarp_prebuilt.sh
132
132
$ZYNTHIAN_RECIPE_DIR /install_dsp56300_prebuilt.sh
133
+ $ZYNTHIAN_RECIPE_DIR /install_nam_prebuilt.sh
134
+ $ZYNTHIAN_RECIPE_DIR /install_ratatouille_prebuilt.sh
133
135
$ZYNTHIAN_RECIPE_DIR /install_surge_xt_prebuilt.sh
134
136
mkdir " /root/.Surge XT"
135
137
Original file line number Diff line number Diff line change @@ -599,6 +599,12 @@ if [[ "$current_patchlevel" < "$patchlevel" ]]; then
599
599
regenerate_lv2_presets.sh https://butoba.net/homepage/mimid.html
600
600
fi
601
601
602
+ patchlevel=" 20250212.1"
603
+ if [[ " $current_patchlevel " < " $patchlevel " ]]; then
604
+ echo " Applying patch $patchlevel ..."
605
+ $ZYNTHIAN_RECIPE_DIR /install_ratatouille_prebuilt.sh
606
+ fi
607
+
602
608
# -----------------------------------------------------------------------------
603
609
# End of patches section
604
610
# -----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments