-
Notifications
You must be signed in to change notification settings - Fork 20
/
buildarm64.sh
executable file
·112 lines (97 loc) · 2.82 KB
/
buildarm64.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
#!/bin/bash
version=4.3
builddir=/tmp/skychart # Be sure this is set to a non existent directory, it is removed after the run!
arch=$(arch)
if [[ $arch != "aarch64" ]]; then
echo "wrong architecture"
exit 1
fi
# adjuste here the target you want to crossbuild
# You MUST crosscompile Freepascal and Lazarus for this targets!
unset extratarget
make_linuxarm=1
unset make_linuxarm_debug
if [[ -n $1 ]]; then
configopt="fpc=$1"
fi
if [[ -n $2 ]]; then
configopt=$configopt" lazarus=$2"
fi
save_PATH=$PATH
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*.deb
rm skychart*.bz2
rm -rf $builddir
# make Linux arm version
if [[ $make_linuxarm ]]; then
./configure $configopt prefix=$builddir target=aarch64-linux$extratarget
if [[ $? -ne 0 ]]; then exit 1;fi
make CPU_TARGET=aarch64 OS_TARGET=linux clean
make CPU_TARGET=aarch64 OS_TARGET=linux
if [[ $? -ne 0 ]]; then exit 1;fi
make install
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
# tar
cd $builddir
cd ..
tar cvjf skychart-$version-$currentrev-linux_arm64.tar.bz2 skychart
if [[ $? -ne 0 ]]; then exit 1;fi
mv skychart*.tar.bz2 $wd
if [[ $? -ne 0 ]]; then exit 1;fi
# deb
cd $wd
rsync -a --exclude=.svn system_integration/Linux/debian $builddir
cd $builddir
mkdir debian/skychartarm64/usr/
mv bin debian/skychartarm64/usr/
mv share debian/skychartarm64/usr/
cd debian
sed -i "/Version:/ s/3/$version-$currentrev/" skychartarm64/DEBIAN/control
fakeroot dpkg-deb --build skychartarm64 .
if [[ $? -ne 0 ]]; then exit 1;fi
mv skychart*.deb $wd
if [[ $? -ne 0 ]]; then exit 1;fi
cd $wd
rm -rf $builddir
if [[ $make_linuxarm_debug ]]; then
make CPU_TARGET=aarch64 OS_TARGET=linux clean
fpcopts="-O1 -g -gl -Ci -Co -Ct" make CPU_TARGET=aarch64 OS_TARGET=linux
if [[ $? -ne 0 ]]; then exit 1;fi
mkdir $builddir
mkdir $builddir/debug
cp skychart/cdc $builddir/debug/skychart
cp skychart/cdcicon $builddir/debug/
cp varobs/varobs $builddir/debug/
cp varobs/varobs_lpv_bulletin $builddir/debug/
cd $builddir
tar cvjf bin-linux_arm64-debug-$currentrev.tar.bz2 debug
if [[ $? -ne 0 ]]; then exit 1;fi
mv bin-*.tar.bz2 $wd
if [[ $? -ne 0 ]]; then exit 1;fi
cd $wd
rm -rf $builddir
fi
fi
cd $wd
rm -rf $builddir
# store revision
echo $currentrev > last.build
else
echo Already build at revision $currentrev
exit 4
fi