Skip to content

Commit

Permalink
updated to v2 vst and au plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
khumnath committed Oct 2, 2024
1 parent f114100 commit 90dde6a
Show file tree
Hide file tree
Showing 39 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion download-and-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@ if [ "$DOIT" = true ]; then
echo "downloading......."
git clone https://github.com/khumnath/merobaja.git
cd merobaja

echo "installing AU plugin..."
sudo cp -r "mac/merobaja.component"* "/Library/Audio/Plug-Ins/Components"
sudo cp -r "mac/merobaja.instruments"* "/Library/Audio/Plug-Ins/Components"
echo "installing vst3 plugin..."
sudo cp -r "mac/merobaja.vst3"* "/Library/Audio/Plug-Ins/VST"
sudo cp -r "mac/merobaja.instruments"* "/Library/Audio/Plug-Ins/VST"
echo "plugin installed!! now ask us for activation key"
cd ..
echo "cleaning...."
sleep 3
rm -rf merobaja
else
echo "good bye!!"
Expand Down
10 changes: 7 additions & 3 deletions install-mac.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
#!/bin/bash
# this script installs merobaja vst vst3 and AU plugin on mac os
echo "Do you like to install merobaja instrument plugin on your system?"
echo "Do you like to install merobaja instrument AU plugin or Vst3? answer 1 for AU or 2 for Vst3"
read answer
if [[ $answer == y* ]]; then
echo "installing......."
if [[ $answer == 1 ]]; then
echo "installing mac audio plugin....."
sudo cp -r "mac/merobaja.component"* "/Library/Audio/Plug-Ins/Components"
sudo cp -r "mac/merobaja.instruments"* "/Library/Audio/Plug-Ins/Components"
echo "Installed AU plugin! contact for license key!!"
if [[ $answer == 2 ]]; then
echo "installing vst3....."
sudo cp -r "mac/merobaja.vst3"* "/Library/Audio/Plug-Ins/VST"
sudo cp -r "mac/merobaja.instruments"* "/Library/Audio/Plug-Ins/VST"
echo "Installed vst3 plugin! contact for license key!!"
else
echo "good bye!!"
sleep 3
Expand Down
Loading

0 comments on commit 90dde6a

Please sign in to comment.