-
Notifications
You must be signed in to change notification settings - Fork 20
/
build_dso_mac_pkg.sh
executable file
·42 lines (33 loc) · 1.13 KB
/
build_dso_mac_pkg.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
#!/bin/bash
version=4.0
basedir=/Volumes/TmpInst/skychart # Be sure this is set to a non existent directory, it is removed after the run!
builddir=$basedir/Cartes
if [[ -n $1 ]]; then
configopt="fpc=$1"
fi
if [[ -n $2 ]]; then
configopt=$configopt" lazarus=$2"
fi
wd=`pwd`
currentrev=$(git rev-list --count --first-parent HEAD)
# delete old files
rm skychart-data-dso*.dmg
rm -rf $basedir
# make DSO Mac version
./configure $configopt prefix=$builddir target=x86_64-darwin
if [[ $? -ne 0 ]]; then exit 1;fi
make install_cat2
if [[ $? -ne 0 ]]; then exit 1;fi
# pkg
cp system_integration/MacOSX/skychart-data-dso.packproj $basedir
cp system_integration/MacOSX/readme_dso.txt $basedir
cd $basedir
mv Cartes "Cartes du Ciel"
freeze -v skychart-data-dso.packproj
if [[ $? -ne 0 ]]; then exit 1;fi
hdiutil create -anyowners -volname skychart-data-dso-$version-$currentrev-macosx -imagekey zlib-level=9 -format UDZO -srcfolder ./build skychart-data-dso-$version-$currentrev-macosx.dmg
if [[ $? -ne 0 ]]; then exit 1;fi
mv skychart-data-dso*.dmg $wd
if [[ $? -ne 0 ]]; then exit 1;fi
cd $wd
rm -rf $basedir