|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (C) 2020-2021 Alexandros Theodotou <alex at zrythm dot org>
|
|
|
|
#
|
|
|
|
# This file is part of Zrythm
|
|
|
|
#
|
|
|
|
# Zrythm is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Zrythm is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with Zrythm. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
echo "Post installation process finished"
|
|
|
|
|
|
|
|
#Custermize this for your application
|
|
|
|
APPLICATION_FILE_PATH=bin/zrythm_launch
|
|
|
|
|
|
|
|
#Parameters
|
|
|
|
product_version="@ZRYTHM_PRODUCT_VERSION@"
|
|
|
|
PRODUCT_HOME=/Library/Zrythm/$product_version
|
|
|
|
|
|
|
|
echo "Post installation process started"
|
|
|
|
|
|
|
|
#Change permissions in home directory
|
|
|
|
echo "Change permissions in product home"
|
|
|
|
cd ${PRODUCT_HOME}
|
|
|
|
chmod -R 755 .
|
|
|
|
[ -d /usr/local/bin ] || mkdir /usr/local/bin
|
|
|
|
|
|
|
|
#Add application shortcut to /usr/local/bin
|
|
|
|
rm -f /usr/local/bin/Zrythm-@ZRYTHM_PRODUCT_VERSION@
|
|
|
|
ln -s ${PRODUCT_HOME}/${APPLICATION_FILE_PATH} /usr/local/bin/Zrythm-@ZRYTHM_PRODUCT_VERSION@
|
|
|
|
|
|
|
|
echo "Install fonts"
|
|
|
|
our_fonts_dir=${PRODUCT_HOME}/share/fonts/zrythm
|
|
|
|
for font in Bold BoldItalic Italic Light LightItalic Regular; do
|
|
|
|
full_font_name=DSEG14ClassicMini-$font.ttf
|
|
|
|
echo "installing font $full_font_name"
|
|
|
|
ln -s ${our_fonts_dir}/DSEG14-Classic-MINI/$full_font_name \
|
|
|
|
/Library/Fonts/$full_font_name
|
|
|
|
ln -s ${our_fonts_dir}/DSEG14-Classic-MINI/DSEG-LICENSE.txt \
|
|
|
|
/Library/Fonts/DSEG-LICENSE.txt
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "Move LV2 plugins"
|
|
|
|
dest_lv2_dir="/Library/Audio/Plug-Ins/LV2"
|
|
|
|
dest_lv2_prefix="$dest_lv2_dir/Zrythm-$product_version"
|
|
|
|
mkdir -p $dest_lv2_dir
|
|
|
|
for plugin in `ls ${PRODUCT_HOME}/lib/lv2`; do
|
|
|
|
rm -rf $dest_lv2_prefix-$plugin
|
|
|
|
mv -vf ${PRODUCT_HOME}/lib/lv2/$plugin \
|
|
|
|
$dest_lv2_prefix-$plugin
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "Move Zrythm.app"
|
|
|
|
mv -vf ${PRODUCT_HOME}/Zrythm.app /Applications/
|
|
|
|
|
|
|
|
echo "Post installation process finished"
|