-
Notifications
You must be signed in to change notification settings - Fork 6
/
deploy_macos.sh
executable file
·89 lines (70 loc) · 2.13 KB
/
deploy_macos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env bash
export APP_NAME="Theengs"
export APP_VERSION=1.4.1
export GIT_VERSION=$(git rev-parse --short HEAD)
echo "> $APP_NAME packager (macOS x86_64) [v$APP_VERSION]"
## CHECKS ######################################################################
if [ "$(id -u)" == "0" ]; then
echo "This script MUST NOT be run as root" 1>&2
exit 1
fi
#if [ ${PWD##*/} != "Theengs" ]; then
# echo "This script MUST be run from the Theengs/ directory"
# exit 1
#fi
## SETTINGS ####################################################################
use_contribs=false
make_install=false
create_package=false
upload_package=false
while [[ $# -gt 0 ]]
do
case $1 in
-c|--contribs)
use_contribs=true
;;
-i|--install)
make_install=true
;;
-p|--package)
create_package=true
;;
-u|--upload)
upload_package=true
;;
*)
echo "> Unknown argument '$1'"
;;
esac
shift # skip argument or value
done
## APP INSTALL #################################################################
if [[ $make_install = true ]] ; then
echo '---- Running make install'
make INSTALL_ROOT=bin/ install
#echo '---- Installation directory content recap (after make install):'
#find bin/
fi
## DEPLOY ######################################################################
if [[ $use_contribs = true ]] ; then
export LD_LIBRARY_PATH=$(pwd)/contribs/src/env/macOS_x86_64/usr/lib/
else
export LD_LIBRARY_PATH=/usr/local/lib/
fi
echo '---- Running macdeployqt'
macdeployqt bin/$APP_NAME.app -qmldir=qml/ -hardened-runtime -timestamp -appstore-compliant
#echo '---- Installation directory content recap (after macdeployqt):'
#find bin/
## PACKAGE (zip) ###############################################################
if [[ $create_package = true ]] ; then
echo '---- Compressing package'
cd bin/
zip -r -y -X ../$APP_NAME-$APP_VERSION-macos.zip $APP_NAME.app
cd ..
fi
## UPLOAD ######################################################################
if [[ $upload_package = true ]] ; then
printf "---- Uploading to transfer.sh"
curl --upload-file $APP_NAME*.zip https://transfer.sh/$APP_NAME.$APP_VERSION-git$GIT_VERSION-macOS.zip
printf "\n"
fi