-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathx-osx-bundle.sh
executable file
·328 lines (269 loc) · 8.47 KB
/
x-osx-bundle.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#!/bin/bash
set -e
: ${HVSTACK=$HOME/src/hv_stack}
: ${HVARCH=-arch i386 -arch x86_64}
: ${OSXCOMPAT="-isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -headerpad_max_install_names"}
TARGET=/tmp/
VERSION=$(git describe --tags HEAD || echo "X.X.X")
TOPDIR=$(pwd)
export PATH=${HVSTACK}/bin:${HOME}/bin:/usr/local/git/bin/:$PATH
export PKG_CONFIG_PATH=${HVSTACK}/lib/pkgconfig
make clean ARCHINCLUDES="-I${HVSTACK}/include" LDFLAGS="-L${HVSTACK}/lib ${HVARCH}"
make CFLAGS="-DNDEBUG -O2 ${HVARCH} ${OSXCOMPAT}" ARCHINCLUDES="-I${HVSTACK}/include" LDFLAGS="-L${HVSTACK}/lib ${HVARCH}"
file src/harvid
PREFIX=`mktemp -d -t harvid-pkg`
trap "rm -rf ${PREFIX}" EXIT
rm -rf $PREFIX
cp -a pkg/osx/ $PREFIX
TDIR=$PREFIX/usr/local/bin
LDIR=$PREFIX/usr/local/lib/harvid
mkdir -p $TDIR
mkdir -p $LDIR
#############################################################################
# DEPLOY
cp -fv src/harvid "$TDIR/harvid"
strip -SXx "$TDIR/harvid"
cp -fv "$HVSTACK/bin/ffprobe" "$TDIR/ffprobe_harvid"
strip -SXx "$TDIR/ffprobe_harvid"
cp -fv "$HVSTACK/bin/ffmpeg" "$TDIR/ffmpeg_harvid"
strip -SXx "$TDIR/ffmpeg_harvid"
mkdir -p $PREFIX/usr/local/man/man1/
cp -fv "${TOPDIR}/doc/harvid.1" $PREFIX/usr/local/man/man1/
cp -fv "${HVSTACK}/share/man/man1/ffmpeg.1" $PREFIX/usr/local/man/man1/ffmpeg_harvid.1 || true
cp -fv "${HVSTACK}/share/man/man1/ffprobe.1" $PREFIX/usr/local/man/man1/ffprobe_harvid.1 || true
echo
##############################################################################
# add dependancies..
echo "bundle libraries ..."
while [ true ] ; do
missing=false
for file in ${TDIR}/* ${LDIR}/*; do
set +e # grep may return 1
if ! file $file | grep -qs Mach-O ; then
continue;
fi
deps=`otool -arch all -L $file \
| awk '{print $1}' \
| egrep "($HVSTACK|/opt/|/local/|libs/)" \
| egrep -v ':$' \
| grep -v '/bin/'`
set -e
for dep in $deps ; do
base=`basename $dep`
if ! test -f ${LDIR}/$base; then
cp -v $dep ${LDIR}/
missing=true
fi
done
done
if test x$missing = xfalse ; then
break
fi
done
echo "update executables ..."
for exe in ${TDIR}/*; do
set +e # grep may return 1
if ! file $exe | grep -qs Mach-O ; then
continue
fi
changes=""
libs=`otool -arch all -L $exe \
| awk '{print $1}' \
| egrep "($HVSTACK|/opt/|/local/|libs/)" \
| grep -v '/bin/'`
set -e
for lib in $libs; do
base=`basename $lib`
changes="$changes -change $lib @executable_path/../lib/harvid/$base"
done
if test "x$changes" != "x" ; then
install_name_tool $changes $exe
fi
done
echo "update libraries ..."
for dylib in ${LDIR}/*.dylib ; do
# skip symlinks
if test -L $dylib ; then
continue
fi
strip -SXx $dylib
# change all the dependencies
changes=""
libs=`otool -arch all -L $dylib \
| awk '{print $1}' \
| egrep "($HVSTACK|/opt/|/local/|libs/)" \
| grep -v '/bin/'`
for lib in $libs; do
base=`basename $lib`
changes="$changes -change $lib @executable_path/../lib/harvid/$base"
done
if test "x$changes" != x ; then
if install_name_tool $changes $dylib ; then
:
else
exit 1
fi
fi
# now the change what the library thinks its own name is
base=`basename $dylib`
install_name_tool -id @executable_path/../lib/harvid/$base $dylib
done
echo "all bundled up."
##############################################################################
# package & DMG
echo "------- Build Package"
cd "$TOPDIR"
test -d $PREFIX/Resources/harvid.pmdoc
mkdir -p "${TARGET}"
if test -f /Developer/usr/bin/packagemaker ; then
SHORTVS=$(echo $VERSION | sed 's/^v\([0-9.]*\).*$/\1/')
echo "calling packagemaker"
/Developer/usr/bin/packagemaker \
-d $PREFIX/Resources/harvid.pmdoc \
-v --id gareus.org.sodankyla.harvid.pkg \
--out "${TARGET}/harvid-${VERSION}.pkg" \
--version $SHORTVS \
--title "harvid"
ls -l "${TARGET}/harvid-${VERSION}.pkg"
else
echo "--!!!-- Skipped Package"
fi
echo
echo "------- Preparing bundle"
echo
APPNAME=Harvid
APPDIR=${APPNAME}.app
mv $PREFIX/usr $PREFIX/${APPDIR}
mv $PREFIX/${APPDIR}/local $PREFIX/${APPDIR}/Contents
mv $PREFIX/${APPDIR}/Contents/bin $PREFIX/${APPDIR}/Contents/MacOS
rm -rf $PREFIX/Resources/
mkdir $PREFIX/${APPDIR}/Contents/Resources
cp pkg/osx/Resources/harvid.icns $PREFIX/${APPDIR}/Contents/Resources/
cat > $PREFIX/${APPDIR}/Contents/MacOS/harvid_param << EOF
#!/usr/bin/env bash
CWD="\`/usr/bin/dirname \"\$0\"\`"
/usr/bin/osascript -e '
tell application "Finder"
display dialog "harvid is a system service without graphical user interface. Visit http://localhost:1554 to interact with it." buttons["OK"]
end tell'
(sleep 3; open http://localhost:1554) &
exec "\$CWD/harvid" -A shutdown
EOF
chmod +x $PREFIX/${APPDIR}/Contents/MacOS/harvid_param
cat > $PREFIX/${APPDIR}/Contents/Info.plist << EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>harvid_param</string>
<key>CFBundleName</key>
<string>Harvid</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>~~~~</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleIconFile</key>
<string>harvid</string>
<key>CFBundleIdentifier</key>
<string>org.gareus.harvid</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>LSUIElement</key>
<string>1</string>
</dict>
</plist>
EOF
ls -l $PREFIX/
echo
echo "------- Building DMG"
echo
UC_DMG="${TARGET}/$APPNAME-${VERSION}.dmg"
VOLNAME=$APPNAME-${VERSION}
MNTPATH=`mktemp -d -t harvidimg`
TMPDMG=`mktemp -t harvid`
ICNSTMP=`mktemp -t harvidicon`
DMGSIZE=$[ `du -sm "$PREFIX" | cut -f 1` * 1049 / 1000 + 3 ]
trap "rm -rf $MNTPATH $TMPDMG ${TMPDMG}.dmg $ICNSTMP ${PREFIX}" EXIT
rm -f "$UC_DMG" "$TMPDMG" "${TMPDMG}.dmg" "$ICNSTMP"
rm -rf "$MNTPATH"
mkdir -p "$MNTPATH"
TMPDMG="${TMPDMG}.dmg"
hdiutil create -megabytes $DMGSIZE -fs HFS+ -volname "${VOLNAME}" "$TMPDMG"
DiskDevice=$(hdid -nomount "$TMPDMG" | grep Apple_HFS | cut -f 1 -d ' ')
mount -t hfs "${DiskDevice}" "${MNTPATH}"
cp -r ${PREFIX}/${APPDIR} "${MNTPATH}"
mkdir "${MNTPATH}/.background"
cp -vi "${TOPDIR}/doc/dmgbg.png" "${MNTPATH}/.background/dmgbg.png"
echo "setting DMG background ..."
if test $(sw_vers -productVersion | cut -d '.' -f 1) -lt 11 -a $(sw_vers -productVersion | cut -d '.' -f 2) -lt 9; then
# OSX ..10.8.X
DISKNAME=${VOLNAME}
else
# OSX 10.9.X and later
DISKNAME=`basename "${MNTPATH}"`
fi
echo '
tell application "Finder"
tell disk "'${DISKNAME}'"
open
delay 1
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {400, 200, 800, 440}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 64
set background picture of theViewOptions to file ".background:dmgbg.png"
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}
set position of item "'${APPDIR}'" of container window to {90, 100}
set position of item "Applications" of container window to {310, 100}
close
open
update without registering applications
delay 5
eject
end tell
end tell
' | osascript || {
echo "Failed to set background/arrange icons"
umount "${DiskDevice}" || true
hdiutil eject "${DiskDevice}"
exit 1
}
set +e
chmod -Rf go-w "${MNTPATH}"
set -e
sync
echo "unmounting the disk image ..."
# Umount the image ('eject' above may already have done that)
umount "${DiskDevice}" || true
hdiutil eject "${DiskDevice}" || true
# Create a read-only version, use zlib compression
echo "compressing Image ..."
hdiutil convert -format UDZO "${TMPDMG}" -imagekey zlib-level=9 -o "${UC_DMG}"
# Delete the temporary files
rm "$TMPDMG"
rm -rf "$MNTPATH"
echo "setting file icon ..."
cp pkg/osx/Resources/harvid.icns ${ICNSTMP}.icns
sips -i ${ICNSTMP}.icns
DeRez -only icns ${ICNSTMP}.icns > ${ICNSTMP}.rsrc
Rez -append ${ICNSTMP}.rsrc -o "$UC_DMG"
SetFile -a C "$UC_DMG"
rm -f ${ICNSTMP}.icns ${ICNSTMP}.rsrc
rm -rf $BUNDLEDIR
echo
echo "DMG packaging suceeded."
ls -l "$UC_DMG"
echo
echo "rolling .tgz"
cd ${PREFIX}/${APPDIR}/Contents/
tar czf ${TARGET}/harvid-osx-${VERSION}.tgz \
--exclude MacOS/harvid_param \
MacOS lib/harvid
rm -rf ${PREFIX}
echo "Done."