-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmakeReleaseMac.sh
executable file
·74 lines (64 loc) · 2.97 KB
/
makeReleaseMac.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
#!/bin/sh
PACKAGE_DIR="TreasureChest.app"
mkdir ${PACKAGE_DIR}
mkdir ${PACKAGE_DIR}/Contents
mkdir ${PACKAGE_DIR}/Contents/MacOS
mkdir ${PACKAGE_DIR}/Contents/Frameworks
mkdir ${PACKAGE_DIR}/Contents/Resources
binaries=("pirate-qt-mac")
alllibs=()
for binary in "${binaries[@]}";
do
# do the work in the destination directory
cp ${binary} ${PACKAGE_DIR}/Contents/MacOS/
cp zcutil/res/Info.plist ${PACKAGE_DIR}/Contents/
cp zcutil/res/PkgInfo ${PACKAGE_DIR}/Contents/
cp src/qt/res/icons/pirate.icns ${PACKAGE_DIR}/Contents/Resources/logo.icns
# find the dylibs to copy for komodod
DYLIBS=`otool -L ${PACKAGE_DIR}/Contents/MacOS/${binary} | grep "/usr/local" | awk -F' ' '{ print $1 }'`
echo "copying ${DYLIBS} to ${PACKAGE_DIR}"
# copy the dylibs to the srcdir
for dylib in ${DYLIBS}; do cp -rf ${dylib} ${PACKAGE_DIR}/Contents/Frameworks; done
done
libraries=("libgcc_s.1.dylib" "libgomp.1.dylib" "libidn2.0.dylib" "libstdc++.6.dylib")
for binary in "${libraries[@]}";
do
# find the dylibs to copy for komodod
DYLIBS=`otool -L ${PACKAGE_DIR}/Contents/Frameworks/${binary} | grep "/usr/local" | awk -F' ' '{ print $1 }'`
echo "copying ${DYLIBS} to ${PACKAGE_DIR}/Contents/Frameworks"
# copy the dylibs to the srcdir
for dylib in ${DYLIBS}; do cp -rf ${dylib} ${PACKAGE_DIR}/Contents/Frameworks; alllibs+=(${dylib}); done
done
indirectlibraries=("libintl.8.dylib" "libunistring.2.dylib")
for binary in "${indirectlibraries[@]}";
do
# Need to undo this for the dylibs when we are done
chmod 755 src/${binary}
# find the dylibs to copy for komodod
DYLIBS=`otool -L ${PACKAGE_DIR}/Contents/Frameworks/${binary} | grep "/usr/local" | awk -F' ' '{ print $1 }'`
echo "copying indirect ${DYLIBS} to ${PACKAGE_DIR}/Contents/Frameworks"
# copy the dylibs to the dest dir
for dylib in ${DYLIBS}; do cp -rf ${dylib} ${PACKAGE_DIR}/Contents/Frameworks; alllibs+=(${dylib}); done
done
for binary in "${binaries[@]}";
do
# modify komodod to point to dylibs
echo "modifying ${binary} to use local libraries"
for dylib in "${alllibs[@]}"
do
echo "Next lib is ${dylib} "
install_name_tool -change ${dylib} @executable_path/../Frameworks/`basename ${dylib}` ${PACKAGE_DIR}/Contents/MacOS/${binary}
done
chmod +x ${PACKAGE_DIR}/Contents/MacOS/${binary}
done
for binary in "${alllibs[@]}";
do
# modify libraries to point to dylibs
echo "modifying ${binary} to use local libraries"
for dylib in "${alllibs[@]}"
do
echo "Next lib is ${dylib} "
install_name_tool -change ${dylib} @executable_path/../Frameworks/`basename ${dylib}` ${PACKAGE_DIR}/Contents/Frameworks/`basename ${binary}`
done
done
create-dmg --volname "pirate-qt-mac" --volicon "zcutil/res/logo.icns" --window-pos 200 120 --icon "TreasureChest.app" 200 190 --app-drop-link 600 185 --hide-extension "TreasureChest.app" --window-size 800 400 --hdiutil-quiet --background zcutil/res/dmgbg.png pirate-qt-mac.dmg TreasureChest.app