1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/mac/macdeploy.sh
nowrep 9fd0508e53 [Mac] macdeploy.sh now also creates a dmg image
Thanks to Seyyed Razi Alavizadeh for create script and images
2014-02-05 01:37:26 +01:00

41 lines
998 B
Bash
Executable File

#!/bin/bash
#
# Usage: ./macdeploy.sh [<full-path-to-macdeployqt>]
#
# macdeployqt is usually located in QTDIR/bin/macdeployqt
# If path to macdeployqt is not specified, using it from PATH
MACDEPLOYQT="macdeployqt"
LIBRARY_NAME="libQupZilla.1.dylib"
if [ -n "$1" ]; then
MACDEPLOYQT=$1
fi
# cd to directory with bundle
test -d bin || cd ..
cd bin
# copy libQupZilla into bundle
cp $LIBRARY_NAME QupZilla.app/Contents/MacOS/
# copy all plugins into bundle
test -d QupZilla.app/Contents/Resources/plugins || mkdir QupZilla.app/Contents/Resources/plugins
cp plugins/*.dylib QupZilla.app/Contents/Resources/plugins/
# fix libQupZilla
install_name_tool -change $LIBRARY_NAME @executable_path/$LIBRARY_NAME QupZilla.app/Contents/MacOS/QupZilla
# fix plugins
for plugin in QupZilla.app/Contents/Resources/plugins/*.dylib
do
install_name_tool -change $LIBRARY_NAME @executable_path/$LIBRARY_NAME $plugin
done
# run macdeployqt
$MACDEPLOYQT QupZilla.app
# create final dmg image
./create_dmg.sh