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
|
#!/bin/sh
SETUP=false
CLEAN=false
NUM_JOBS=$(( `grep -c ^processor /proc/cpuinfo` + 1 ))
CODE_DIR=$( dirname `readlink -f $0` )
usage() {
echo "usage: build [OPTIONS] [BUILD_TYPE]\n" >&2
echo "Script to build the shell. If BUILD_TYPE is not specified, it defaults to \"debug\".\n" >&2
echo "OPTIONS:" >&2
echo " -s, --setup Setup the build environment and branch Unity" >&2
echo " -c, --clean Clean the build tree before building" >&2
echo >&2
exit 1
}
ARGS=`getopt -n$0 -u -a --longoptions="setup,clean,help" -o "sch" -- "$@"`
[ $? -ne 0 ] && usage
eval set -- "$ARGS"
while [ $# -gt 0 ]
do
case "$1" in
-s|--setup) SETUP=true;;
-c|--clean) CLEAN=true;;
-h|--help) usage;;
--) shift;break;;
esac
shift
done
[ $# -gt 1 ] && usage
BUILD_TYPE="debug"
[ $# -eq 1 ] && BUILD_TYPE="$1"
install_dependencies() {
sudo apt-get update || exit 4
echo "Installing Unity 8 dependencies.."
sudo apt-get install devscripts \
equivs \
gsettings-desktop-schemas \
qmenumodel-qml \
qtdeclarative5-dee-plugin \
qtdeclarative5-gsettings1.0 \
qtdeclarative5-ubuntu-ui-toolkit-plugin \
unity-notifications-impl \
qtdeclarative5-xmllistmodel-plugin \
ubuntu-mobile-icons \
unity-scope-home \
unity-lens-applications \
|| exit 5
}
mk_build_deps() {
[ ! -f unity8-build-deps*deb -o $CODE_DIR/debian/control -nt unity8-build-deps*deb ] && mk-build-deps --install --root-cmd sudo $CODE_DIR/debian/control
}
if [ -f "/usr/bin/ninja" ] ; then
GENERATOR="-G Ninja"
BUILD_COMMAND="ninja -j$NUM_JOBS"
else
GENERATOR=
BUILD_COMMAND="make -j$NUM_JOBS"
fi
if $SETUP; then
install_dependencies
else
if $CLEAN; then rm -rf builddir; fi
mkdir -p builddir
cd builddir
mk_build_deps
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE $CODE_DIR ${GENERATOR} || exit 6
${BUILD_COMMAND} || exit 7
fi
|