forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-dmg.sh
executable file
·39 lines (34 loc) · 889 Bytes
/
create-dmg.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
#!/bin/bash
VERSION=`head -1 debian/changelog | sed 's/.*(\(.*\)).*/\1/'`
#if [ -e "/var/db/receipts/com.apple.pkg.Rosetta.plist" ]; then
# echo Rosetta installed. OK to continue.
#else
# echo You need to install Rosetta from your Snow Leopard Install DVD!
# exit 1
#fi
# Compile translations
./translate.sh
# Build
qmake -spec macx-g++
make distclean
qmake -spec macx-g++
make
if [ ! $? -eq 0 ]; then
echo Compiler error. Aborting package creation.
exit $?
fi
# Install to ~/QLC+.app/
make install
if [ ! $? -eq 0 ]; then
echo Installation error. Aborting package creation.
exit $?
fi
# Create Apple Disk iMaGe from ~/QLC+.app/
cd dmg
./create-dmg --volname "Q Light Controller Plus $VERSION" \
--background background.png \
--window-size 300 225 \
--icon-size 128 --icon "qlcplus" 150 16 \
QLC+_$VERSION.dmg \
~/QLC+.app
cd ..