-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.sh
More file actions
19 lines (19 loc) · 823 Bytes
/
install.sh
File metadata and controls
19 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# this script installs merobaja vst vst3 and AU plugin on mac os
echo "Do you like to install merobaja instrument AU plugin or Vst3? answer 1 for AU or 2 for Vst3"
read answer
if [[ $answer == 1 ]]; then
echo "installing mac audio plugin....."
sudo cp -r "merobaja-main/mac/merobaja.component"* "/Library/Audio/Plug-Ins/Components"
sudo cp -r "/merobaja-main/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 "merobaja-main/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
clear && printf '\e[3J'
fi