mirror of
https://github.com/Boof2015/prism.git
synced 2026-08-12 05:10:51 +02:00
61 lines
1.5 KiB
Bash
Executable File
61 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# Package post-install hook for Linux .deb/.rpm builds. The app package installs
|
|
# Prism under /opt, then this copies the bundled native Linux VST3 bundles into
|
|
# the global VST3 scan path used by Linux DAWs.
|
|
|
|
set -eu
|
|
|
|
DEST_DIR="${PRISM_VST3_DEST_DIR:-/usr/lib/vst3}"
|
|
|
|
find_source_dir() {
|
|
if [ -n "${PRISM_VST3_SOURCE_DIR:-}" ] && [ -d "$PRISM_VST3_SOURCE_DIR" ]; then
|
|
printf '%s\n' "$PRISM_VST3_SOURCE_DIR"
|
|
return 0
|
|
fi
|
|
|
|
for dir in \
|
|
/opt/Prism/resources/plugins/VST3 \
|
|
/opt/prism/resources/plugins/VST3
|
|
do
|
|
if [ -d "$dir" ]; then
|
|
printf '%s\n' "$dir"
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
return 1
|
|
}
|
|
|
|
install_plugin() {
|
|
plugin_name="$1"
|
|
source_plugin="$SOURCE_DIR/$plugin_name"
|
|
dest_plugin="$DEST_DIR/$plugin_name"
|
|
|
|
if [ ! -d "$source_plugin" ]; then
|
|
echo "Prism VST3 install: missing bundled plugin: $source_plugin" >&2
|
|
return 1
|
|
fi
|
|
|
|
rm -rf "$dest_plugin"
|
|
cp -a "$source_plugin" "$DEST_DIR/"
|
|
}
|
|
|
|
SOURCE_DIR="$(find_source_dir || true)"
|
|
if [ -z "$SOURCE_DIR" ]; then
|
|
echo "Prism VST3 install: bundled VST3 directory not found; skipping plugin install." >&2
|
|
exit 0
|
|
fi
|
|
|
|
mkdir -p "$DEST_DIR"
|
|
|
|
install_plugin "Prism Spectrum.vst3"
|
|
install_plugin "Prism Oscilloscope.vst3"
|
|
install_plugin "Prism VU Meter.vst3"
|
|
install_plugin "Prism Loudness Meter.vst3"
|
|
install_plugin "Prism Vectorscope.vst3"
|
|
install_plugin "Prism Spectrogram.vst3"
|
|
install_plugin "Prism Waveform.vst3"
|
|
|
|
chmod -R a+rX "$DEST_DIR"/Prism*.vst3 2>/dev/null || true
|
|
echo "Prism VST3 plugins installed to $DEST_DIR"
|