icefox / arora

Cross platform web browser

This URL has Read+Write access

arora / buildosx.sh
100755 32 lines (26 sloc) 0.675 kb
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
#!/bin/sh
#
# This script requires the use of the macdeployqt tool that is found in Qt 4.5
#
 
APP="Arora"
VERSION="0.7.1"
#BACKGROUND="src/data/512x512/arora.png"
 
DIR="bundle"
if [ -d $DIR.app ] ; then
echo "$DIR.app already exists"
    exit 1;
fi
 
# build app with Qt libraries
make distclean --quiet
qmake -config release
make --quiet
$QTDIR/bin/macdeployqt $APP.app/
 
# Create Bundle
mkdir $DIR
#cp $BACKGROUND $DIR/.Background.png
cp -rf $APP.app $DIR/
hdiutil create -ov -srcfolder $DIR -format UDBZ -volname "$APP $VERSION" "$APP.dmg"
hdiutil internet-enable -yes "$APP.dmg"
rm -rf $DIR
 
DATE=`date +"%m-%d-%Y"`
mv $APP.dmg "$APP Snapshot ($DATE) Intel-qt4.5.dmg"