mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
|
|
# This script takes the build product and copies it to the AU, VST, and RTAS folders, depending on
|
|
# which plugin types you've built
|
|
|
|
original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME
|
|
|
|
# this looks inside the binary to detect which platforms are needed..
|
|
copyAU=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'AudioUnit' | wc -l`
|
|
copyVST=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'VSTPlugin' | wc -l`
|
|
copyRTAS=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'CProcess' | wc -l`
|
|
|
|
if [ $copyAU -gt 0 ]; then
|
|
echo "Copying to AudioUnit folder..."
|
|
AU=~/Library/Audio/Plug-Ins/Components/$PRODUCT_NAME.component
|
|
if [ -d "$AU" ]; then
|
|
rm -r "$AU"
|
|
fi
|
|
|
|
cp -r "$original" "$AU"
|
|
sed -i "" -e 's/TDMwPTul/BNDLPTul/g' "$AU/Contents/PkgInfo"
|
|
sed -i "" -e 's/TDMw/BNDL/g' "$AU/Contents/$INFOPLIST_FILE"
|
|
fi
|
|
|
|
if [ $copyVST -gt 0 ]; then
|
|
echo "Copying to VST folder..."
|
|
VST=~/Library/Audio/Plug-Ins/VST/$PRODUCT_NAME.vst
|
|
if [ -d "$VST" ]; then
|
|
rm -r "$VST"
|
|
fi
|
|
|
|
cp -r "$original" "$VST"
|
|
sed -i "" -e 's/TDMwPTul/BNDLPTul/g' "$VST/Contents/PkgInfo"
|
|
sed -i "" -e 's/TDMw/BNDL/g' "$VST/Contents/$INFOPLIST_FILE"
|
|
fi
|
|
|
|
if [ $copyRTAS -gt 0 ]; then
|
|
echo "Copying to RTAS folder..."
|
|
RTAS=/Library/Application\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm
|
|
if [ -d "$RTAS" ]; then
|
|
rm -r "$RTAS"
|
|
fi
|
|
|
|
cp -r "$original" "$RTAS"
|
|
fi
|