-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild-macos.sh
executable file
·131 lines (96 loc) · 3.53 KB
/
build-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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/env bash
if [ ! -e ./cred-macos ]; then
echo "cred-macos not found, abort"
echo "Must define DEVELOPER_ID_APPLICATION, TEAM_ID and PASS."
exit 1
fi
#QT_LOC=$(find /usr/local/Cellar/qt@5 -name Qt5Config.cmake)
#QT_LOC=$(dirname $QT_LOC)
QT_LOC=~/Qt/5.15.2/clang_64
# Homebrew
#QT_LOC=/usr/local/opt/qt@5
source ./cred-macos
# https://melatonin.dev/blog/how-to-code-sign-and-notarize-macos-audio-plugins-in-ci/
if [ ! -e "$QT_LOC" ]; then
QT_LOC=/opt/homebrew/opt/qt@5
fi
# awk '/project\(/ { gsub(")",""); print $3;}' CMakeLists.txt
VERSION=$(grep project CMakeLists.txt \
| awk 'match($0, /[0-9]+.[0-9]+.[0-9]/) {print substr($0, RSTART, RLENGTH)}')
ARCH=$(uname -m)
YEAR=$(date "+%Y")
if [ ! -e "$QT_LOC" ]; then
echo "Qt5 not found, please install via Homebrew"
exit 1
fi
# create Info.plist
cat << EOF > Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleIconFile</key>
<string>deconz.icns</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>Zigbee controller.</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleExecutable</key>
<string>deCONZ</string>
<key>CFBundleIdentifier</key>
<string>de.phoscon.deconz</string>
<key>CFBundleName</key>
<string>deCONZ</string>
<key>CFBundleDisplayName</key>
<string>deCONZ</string>
<key>NSHumanReadableCopyright</key>
<string>© 2012-${YEAR}, dresden elektronik. All rights reserved.
</string>
<key>CFBundleShortVersionString</key>
<string>${VERSION}</string>
<key>NOTE</key>
<string></string>
</dict>
</plist>
EOF
rm -fr build-macos
mkdir -p build-macos
pushd build-macos
mkdir -p deCONZ.app/Contents/Frameworks
pushd deCONZ.app/Contents/Frameworks
LIBCRYPTO=$(find /usr/local/opt/openssl/lib -name 'libcrypto.3.dylib')
LIBSSL=$(find /usr/local/opt/openssl/lib -name 'libssl.3.dylib')
cp $LIBCRYPTO $LIBSSL .
install_name_tool -change /usr/local/opt/openssl/lib/libcrypto.3.dylib @loader_path/../Frameworks/libcrypto.3.dylib ./libssl.3.dylib
install_name_tool -change /usr/local/opt/openssl/lib/libssl.3.dylib @loader_path/../Frameworks/libssl.3.dylib ./libssl.3.dylib
install_name_tool -change /usr/local/opt/openssl/lib/libcrypto.3.dylib @loader_path/../Frameworks/libcrypto.3.dylib ./libcrypto.3.dylib
install_name_tool -id "@rpath/libssl.3.dylib" libssl.3.dylib
install_name_tool -id "@rpath/libcrypto.3.dylib" libcrypto.3.dylib
chmod 644 libssl.3.dylib
chmod 644 libcrypto.3.dylib
popd
# -DCMAKE_OSX_ARCHITECTURES=arm64 \
cmake -DCMAKE_MACOSX_BUNDLE=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_PREFIX_PATH=$QT_LOC \
-G Ninja .. \
&& cmake --build . \
&& cmake --install . --prefix . \
&& $QT_LOC/bin/macdeployqt deCONZ.app
# Plugins need to be signed separate due not found by --deep
for i in $(find deCONZ.app/Contents/Plugins -name '*.dylib')
do
codesign --force --verify --verbose --timestamp --options runtime --sign "${DEVELOPER_ID_APPLICATION}" "$i"
done
codesign --deep --force --verify --verbose --timestamp --options runtime --sign "${DEVELOPER_ID_APPLICATION}" "deCONZ.app"
# zip -r9y deconz_${VERSION}-macos_${ARCH}.zip deCONZ.app/
# 7z a -mx9 deconz_${VERSION}-macos_${ARCH}.zip deCONZ.app
# compress exactly like Finder does
ditto -c -k --sequesterRsrc --keepParent deCONZ.app deconz_${VERSION}-macos_${ARCH}.zip
popd
# keep Info.plist unmodified
git checkout HEAD -- Info.plist