-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuildpkg_macarm.sh
executable file
·95 lines (84 loc) · 2.89 KB
/
buildpkg_macarm.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
#!/bin/bash
version=4.3
basedir=/tmp/skychart # Be sure this is set to a non existent directory, it is removed after the run!
builddir=$basedir/Cartes
unset make_debug
if [[ -n $1 ]]; then
configopt="fpc=$1"
fi
if [[ -n $2 ]]; then
configopt=$configopt" lazarus=$2"
fi
wd=`pwd`
# check if new revision since last run
read lastrev <last.build
currentrev=$(git rev-list --count --first-parent HEAD)
if [[ -z $currentrev ]]; then
currentrev=$(grep RevisionStr skychart/revision.inc| sed "s/const RevisionStr = '//"| sed "s/';//")
fi
echo $lastrev ' - ' $currentrev
if [[ $lastrev -ne $currentrev ]]; then
# delete old files
rm skychart-*-arm64.dmg
rm bin-*.bz2
rm -rf $basedir
# make arm64 Mac version
./configure $configopt prefix=$builddir target=aarch64-darwin
if [[ $? -ne 0 ]]; then exit 1;fi
make CPU_TARGET=aarch64 clean
fpcopts="-CX -XX -Xs -Cs8388608" make CPU_TARGET=aarch64
if [[ $? -ne 0 ]]; then exit 1;fi
make install CPU_TARGET=aarch64
if [[ $? -ne 0 ]]; then exit 1;fi
make install_data
if [[ $? -ne 0 ]]; then exit 1;fi
make install_doc
if [[ $? -ne 0 ]]; then exit 1;fi
make install_nonfree
if [[ $? -ne 0 ]]; then exit 1;fi
# pkg
sed -i.bak "22s/1.0/$version/" $builddir/skychart.app/Contents/Info.plist
sed -i.bak "22s/1.0/$version/" $builddir/cdcicon.app/Contents/Info.plist
sed -i.bak "22s/1.0/$version/" $builddir/varobs_lpv_bulletin.app/Contents/Info.plist
sed -i.bak "22s/1.0/$version/" $builddir/varobs.app/Contents/Info.plist
rm $builddir/skychart.app/Contents/Info.plist.bak
rm $builddir/cdcicon.app/Contents/Info.plist.bak
rm $builddir/varobs_lpv_bulletin.app/Contents/Info.plist.bak
rm $builddir/varobs.app/Contents/Info.plist.bak
cp system_integration/MacOSX/skychartarm.pkgproj $basedir
cp system_integration/MacOSX/readme.txt $basedir
cd $basedir
mv Cartes "Cartes du Ciel"
packagesbuild -v skychartarm.pkgproj
if [[ $? -ne 0 ]]; then exit 1;fi
cp readme.txt build/
hdiutil create -anyowners -volname skychart-$version-$currentrev-macos-arm64 -imagekey zlib-level=9 -format UDZO -srcfolder ./build skychart-$version-$currentrev-macos-arm64.dmg
if [[ $? -ne 0 ]]; then exit 1;fi
mv skychart*.dmg $wd
if [[ $? -ne 0 ]]; then exit 1;fi
if [[ $make_debug ]]; then
#debug
cd $wd
rm -rf $basedir
make CPU_TARGET=aarch64 clean
fpcopts="-g -gl -Ci -Co -Ct -Cs8388608" Make CPU_TARGET=aarch64
if [[ $? -ne 0 ]]; then exit 1;fi
mkdir $basedir
mkdir $basedir/debug
cp skychart/cdc $basedir/debug/skychart
cp varobs/varobs $basedir/debug/
cd $basedir/debug/
if [[ $? -ne 0 ]]; then exit 1;fi
tar cvjf bin-macos-arm64-debug-$currentrev.tar.bz2 *
if [[ $? -ne 0 ]]; then exit 1;fi
mv bin-*.tar.bz2 $wd
if [[ $? -ne 0 ]]; then exit 1;fi
fi
cd $wd
rm -rf $basedir
# store revision
echo $currentrev > last.build
else
echo Already build at revision $currentrev
exit 4
fi