Skip to content

Commit 847fb89

Browse files
committedNov 11, 2024
Install DSP56300 emulator from prebuilt binaries.
1 parent 92b7246 commit 847fb89

4 files changed

+27
-6
lines changed
 

‎scripts/recipes/install_dsp56300.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ mv /usr/local/virusTestConsole /usr/local/bin
1717
mv /usr/local/start_IndiArp_BC.sh /usr/local/bin
1818
mv /usr/local/start_Impact__MS.sh /usr/local/bin
1919

20-
jalv http://theusualsuspects.lv2.Osirus
21-
jalv http://theusualsuspects.lv2.OsTIrus
22-
23-
regenerate_lv2_presets.sh http://theusualsuspects.lv2.Osirus
24-
regenerate_lv2_presets.sh http://theusualsuspects.lv2.OsTIrus
20+
# Copy ROM files and then ...
21+
#jalv http://theusualsuspects.lv2.Osirus
22+
#jalv http://theusualsuspects.lv2.OsTIrus
23+
#regenerate_lv2_presets.sh http://theusualsuspects.lv2.Osirus
24+
#regenerate_lv2_presets.sh http://theusualsuspects.lv2.OsTIrus
2525

2626
cd ..
27-
#rm -rf "gearmulator"
27+
rm -rf "gearmulator"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
BASE_URL_DOWNLOAD="https://os.zynthian.org/plugins/aarch64"
4+
5+
cd /usr/local/lib/lv2
6+
rm -rf Osirus.lv2
7+
rm -rf OsTIrus.lv2
8+
wget "$BASE_URL_DOWNLOAD/dsp56300.tar.xz"
9+
tar xfv "dsp56300.tar.xz"
10+
mv dsp56300/Osirus.lv2 .
11+
mv dsp56300/OsTIrus.lv2 .
12+
mv dsp56300/bin/* /usr/local/bin
13+
rm -rf dsp56300
14+
rm -f "dsp56300.tar.xz"

‎scripts/setup_plugins_rbpi.sh

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ $ZYNTHIAN_RECIPE_DIR/install_monique_monosynth_prebuilt.sh
129129
$ZYNTHIAN_RECIPE_DIR/install_odin2_prebuilt.sh
130130
$ZYNTHIAN_RECIPE_DIR/install_argotlunar2_prebuilt.sh
131131
$ZYNTHIAN_RECIPE_DIR/install_qmidiarp_prebuilt.sh
132+
$ZYNTHIAN_RECIPE_DIR/install_dsp56300_prebuilt.sh
132133
$ZYNTHIAN_RECIPE_DIR/install_surge_xt_prebuilt.sh
133134
mkdir "/root/.Surge XT"
134135

‎scripts/update_zynthian_recipes.sh

+6
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,12 @@ if [[ "$current_patchlevel" < "$patchlevel" ]]; then
533533
fi
534534
fi
535535

536+
patchlevel="20241111.1"
537+
if [[ "$current_patchlevel" < "$patchlevel" ]]; then
538+
echo "Applying patch $patchlevel ..."
539+
$ZYNTHIAN_RECIPE_DIR/install_dsp56300_prebuilt.sh
540+
fi
541+
536542
# -----------------------------------------------------------------------------
537543
# End of patches section
538544
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.