blob: c3074447205a758dac5f30f599e7c44e7acdac67 (
plain)
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
|
#!/bin/bash
set -o errexit
set -o pipefail
build_dmg=0
app=melonDS.app
if [[ "$1" == "--dmg" ]]; then
build_dmg=1
shift
fi
if [[ ! -d "$1" ]]; then
echo "Usage: $0 [--dmg] <build-dir>"
exit 1
fi
cd "$1"
# macOS does not have the -f flag for readlink
abspath() {
perl -MCwd -le 'print Cwd::abs_path shift' "$1"
}
cmake_qtdir=$(grep -E "Qt._DIR" CMakeCache.txt)
qtdir="$(abspath "$(echo "$cmake_qtdir/../../.." | cut -d= -f2)")"
plugindir="$app/Contents/PlugIns"
if [[ ! -d "$plugindir" ]]; then
qt_plugins="$qtdir/plugins"
if [[ ! -d "$qt_plugins" ]]; then
qt_plugins="$qtdir/share/qt/plugins"
fi
if [[ ! -d "$qt_plugins" ]]; then
qt_major="$(echo "$cmake_qtdir" | sed -E 's/Qt(.)_DIR.*/\1/')"
qt_plugins="$qtdir/libexec/qt$qt_major/plugins"
fi
mkdir -p "$plugindir/styles" "$plugindir/platforms"
cp "$qt_plugins/styles/libqmacstyle.dylib" "$plugindir/styles/"
cp "$qt_plugins/platforms/libqcocoa.dylib" "$plugindir/platforms/"
fi
fixup_libs() {
local libs=($(otool -L "$1" | grep -vE "/System|/usr/lib|:$|@rpath" | sed -E 's/'$'\t''(.*) \(.*$/\1/'))
for lib in "${libs[@]}"; do
if [[ "$lib" != *"/"* ]]; then
continue
fi
# Dereference symlinks to get the actual .dylib as binaries' load
# commands can contain paths to symlinked libraries.
local abslib="$(abspath "$lib")"
if [[ "$abslib" == *".framework/"* ]]; then
local fwpath="$(echo "$abslib" | sed -E 's@(.*\.framework)/.*@\1/@')"
local fwlib="$(echo "$abslib" | sed -E 's/.*\.framework//')"
local fwname="$(basename "$fwpath")"
local install_path="$app/Contents/Frameworks/$fwname"
install_name_tool -change "$lib" "@rpath/$fwname/$fwlib" "$1"
if [[ ! -d "$install_path" ]]; then
cp -a "$fwpath" "$install_path"
find -H "$install_path" "(" -type d -or -type l ")" -name Headers -exec rm -rf "{}" +
chown -R $UID "$install_path"
chmod -R u+w "$install_path"
strip -SNTx "$install_path/$fwlib"
fixup_libs "$install_path/$fwlib"
fi
else
local base="$(basename "$abslib")"
local install_path="$app/Contents/Frameworks/$base"
install_name_tool -change "$lib" "@rpath/$base" "$1"
if [[ ! -f "$install_path" ]]; then
install -m644 "$abslib" "$install_path"
strip -SNTx "$install_path"
fixup_libs "$install_path"
fi
fi
done
}
if [[ ! -d "$app/Contents/Frameworks" ]]; then
mkdir -p "$app/Contents/Frameworks"
install_name_tool -add_rpath "@executable_path/../Frameworks" "$app/Contents/MacOS/melonDS"
fi
fixup_libs "$app/Contents/MacOS/melonDS"
find "$app/Contents/PlugIns" -name '*.dylib' | while read lib; do
fixup_libs "$lib"
done
bad_rpaths=($(otool -l "$app/Contents/MacOS/melonDS" | grep -E "^ *path (/usr/local|/opt)" | sed -E 's/^ *path (.*) \(.*/\1/' || true))
for path in "${bad_rpaths[@]}"; do
install_name_tool -delete_rpath "$path" "$app/Contents/MacOS/melonDS"
done
codesign -s - --deep -f "$app"
if [[ $build_dmg == 1 ]]; then
mkdir dmg
cp -a "$app" dmg/
ln -s /Applications dmg/Applications
hdiutil create -fs HFS+ -volname melonDS -srcfolder dmg -ov -format UDBZ melonDS.dmg
rm -r dmg
fi
|