summaryrefslogtreecommitdiffstats
path: root/android/compile.sh
blob: 8be0e147c50e382fb51f8d63c7de701f08ca8c2f (plain) (blame)
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
#!/bin/bash

set -e

# This script cross-compiles cuberite for the android platform. It uses
# the following enviroment variables
#   CMAKE: Should be the path to a cmake executable of version 3.7+
#   NDK: Should be the path to the android ndk root
#   (optional) TYPE: either Release or Debug, sets the build type
#   (optional) THREADS: The number of threads to use, default 4

function usage() {
	echo "Usage: NDK=<path-to-ndk> CMAKE=<cmake-binary> $0 (clean|<ABI>)";
	exit 1
}

BASEDIR="$(realpath $(dirname $0))"
BUILDDIR="$BASEDIR/../android-build"
SELF="./$(basename $0)"

# Clean doesn't need CMAKE and NDK, so it's handled here
if [ "$1" == "clean" ]; then
	rm -rf $BUILDDIR
	exit 0
fi

if [ -z "$CMAKE" -o -z "$NDK" ]; then
	usage;
fi

# CMake wants absolute path
CMAKE="$(realpath $CMAKE)"
NDK="$(realpath $NDK)"

if [ -z "$TYPE" ]; then
	TYPE="Release"
fi

if [ -z "$THREADS" ]; then
	THREADS="4"
fi

cd $BASEDIR

case "$1" in

	armeabi-v7a)
		APILEVEL=14
	;;

	arm64-v8a)
		APILEVEL=21
	;;

	x86)
		APILEVEL=14
	;;

	x86_64)
		APILEVEL=21
	;;

	all)
		echo "Packing server.zip ..."
		rm -rf Server
		mkdir -p Server
		cd $BASEDIR/../Server
		zip -r $BASEDIR/Server/server.zip *

		for arch in armeabi-v7a arm64-v8a x86 x86_64; do
			echo "Doing ... $arch ..." && \
			cd $BASEDIR && \
			"$SELF" clean && \
			"$SELF" "$arch" && \
			cd $BUILDDIR/Server && \
			zip $BASEDIR/Server/"$arch".zip Cuberite
		done

		cd $BASEDIR/Server
		for file in server.zip armeabi-v7a.zip arm64-v8a.zip x86.zip x86_64.zip; do
			echo "Generating sha1 sum for ... $file ..." && \
			sha1sum "$file" > "$file".sha1
		done

		echo "Done! The built zip files await you in the Server/ directory"
		exit;
	;;

	*)
		usage;
	;;
esac

mkdir -p $BUILDDIR
cd $BUILDDIR
"$CMAKE" $BASEDIR/../android -DCMAKE_TOOLCHAIN_FILE="$NDK/build/cmake/android.toolchain.cmake" \
    -DANDROID_ABI="$1" \
    -DANDROID_NATIVE_API_LEVEL="$APILEVEL" \
    -DCMAKE_BUILD_TYPE="$TYPE"

make -j "$THREADS"