mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Import subsurface-android build script
Over one year ago i started with a crazy idea, "Wouldn't Subsurface on android be nice?" when i read about Android support in Qt. After playing around with it and doing some quite ugly hacks i got it to build and run. Now are all the patches upstream and this imports the quite crude build script, for others to continue on. This is a squash-import of what have have happened in https://github.com/glance-/subsurface-android during 2014. Signed-off-by: Anton Lundin <glance@acc.umu.se> CC: Joseph W. Joshua <joejoshw@gmail.com> CC: Venkatesh Shukla <venkatesh.shukla.eee11@iitbhu.ac.in> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
20a82e2b21
commit
deb2caf3e0
3 changed files with 214 additions and 0 deletions
9
packaging/android/.gitignore
vendored
Normal file
9
packaging/android/.gitignore
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
*.tar.*
|
||||
*-build-*/
|
||||
libusb-*/
|
||||
libxml2-*/
|
||||
libxslt-*/
|
||||
libzip-*/
|
||||
libgit2-*/
|
||||
ndk-*/
|
||||
sqlite-autoconf-*/
|
41
packaging/android/README
Normal file
41
packaging/android/README
Normal file
|
@ -0,0 +1,41 @@
|
|||
Tool repo to crosscompile subsurface to android-arm
|
||||
---------------------------------------------------
|
||||
|
||||
Dependencies:
|
||||
|
||||
1. android_sdk, android_ndk and Qt5.4. See step 0.
|
||||
2. cmake
|
||||
3. ant
|
||||
4. Java JDK
|
||||
5. working adb is recommended
|
||||
6. dependencies of libdivecomputer and subsurface -
|
||||
visit http://subsurface.hohndel.org/documentation/building/
|
||||
|
||||
Steps to install:
|
||||
|
||||
Step 0.
|
||||
Grab..
|
||||
Android ndk from: http://developer.android.com/tools/sdk/ndk/index.html
|
||||
Android sdk from: http://developer.android.com/sdk/index.html#download
|
||||
And QT for android from: http://qt-project.org/downloads
|
||||
|
||||
Step 1.
|
||||
Extract and install these into known directories.
|
||||
Have a look in the top of build.sh for where the cross build tool expects
|
||||
them. By default thats is: ../../../android-ndk-r9d ../../../android-sdk-linux
|
||||
and ../../../Qt/5.4
|
||||
|
||||
Step 2.
|
||||
Run bash build.sh in the terminal. By default it builds for arm but you
|
||||
can pass x86 as first arg to build.sh to have it build for x86. Nice when
|
||||
debugging in a fast emulator.
|
||||
The script will download and build the whole dependency chain.
|
||||
|
||||
After this, subsurface will be built for android.
|
||||
|
||||
The output folder is subsurface-build-arm/android_build and your newly
|
||||
created apk shows up as:
|
||||
subsurface-build-arm/android_build/bin/QtApp-debug.apk
|
||||
|
||||
Where the x86 apk shows up when built for x86 is left as a exercise for the
|
||||
reader.
|
164
packaging/android/build.sh
Normal file
164
packaging/android/build.sh
Normal file
|
@ -0,0 +1,164 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Configure where we can find things here
|
||||
export ANDROID_NDK_ROOT=$PWD/../../../android-ndk-r10d
|
||||
export ANDROID_SDK_ROOT=$PWD/../../../android-sdk-linux
|
||||
export QT5_ANDROID=$PWD/../../../Qt/5.4
|
||||
export ANDROID_NDK_HOST=linux-x86
|
||||
|
||||
# Which versions are we building against?
|
||||
SQLITE_VERSION=3080704
|
||||
LIBXML2_VERSION=2.9.2
|
||||
LIBXSLT_VERSION=1.1.28
|
||||
LIBZIP_VERSION=0.11.2
|
||||
LIBGIT2_VERSION=0.21.2
|
||||
LIBUSB_VERSION=1.0.19
|
||||
|
||||
# arm or x86
|
||||
export ARCH=${1-arm}
|
||||
|
||||
if [ "$ARCH" = "arm" ] ; then
|
||||
QT_ARCH="armv7"
|
||||
BUILDCHAIN=arm-linux-androideabi
|
||||
elif [ "$ARCH" = "x86" ] ; then
|
||||
QT_ARCH=$ARCH
|
||||
BUILDCHAIN=i686-linux-android
|
||||
fi
|
||||
export QT5_ANDROID_BIN=${QT5_ANDROID}/android_${QT_ARCH}/bin
|
||||
|
||||
if [ ! -e ndk-$ARCH ] ; then
|
||||
$ANDROID_NDK_ROOT/build/tools/make-standalone-toolchain.sh --arch=$ARCH --install-dir=ndk-$ARCH --platform=android-14
|
||||
fi
|
||||
export BUILDROOT=$PWD
|
||||
export PATH=${BUILDROOT}/ndk-$ARCH/bin:$PATH
|
||||
export PREFIX=${BUILDROOT}/ndk-$ARCH/sysroot/usr
|
||||
export PKG_CONFIG_LIBDIR=${PREFIX}/lib/pkgconfig
|
||||
export CC=${BUILDCHAIN}-gcc
|
||||
export CXX=${BUILDCHAIN}-g++
|
||||
|
||||
if [ ! -e sqlite-autoconf-${SQLITE_VERSION}.tar.gz ] ; then
|
||||
wget http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e sqlite-autoconf-${SQLITE_VERSION} ] ; then
|
||||
tar -zxf sqlite-autoconf-${SQLITE_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/sqlite3.pc ] ; then
|
||||
mkdir -p sqlite-build-$ARCH
|
||||
pushd sqlite-build-$ARCH
|
||||
../sqlite-autoconf-${SQLITE_VERSION}/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared
|
||||
make -j4
|
||||
make install
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ ! -e libxml2-${LIBXML2_VERSION}.tar.gz ] ; then
|
||||
wget ftp://xmlsoft.org/libxml2/libxml2-${LIBXML2_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libxml2-${LIBXML2_VERSION} ] ; then
|
||||
tar -zxf libxml2-${LIBXML2_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libxml-2.0.pc ] ; then
|
||||
mkdir -p libxml2-build-$ARCH
|
||||
pushd libxml2-build-$ARCH
|
||||
../libxml2-${LIBXML2_VERSION}/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --without-python --without-iconv --enable-static --disable-shared
|
||||
perl -pi -e 's/runtest\$\(EXEEXT\)//' Makefile
|
||||
perl -pi -e 's/testrecurse\$\(EXEEXT\)//' Makefile
|
||||
make -j4
|
||||
make install
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ ! -e libxslt-${LIBXSLT_VERSION}.tar.gz ] ; then
|
||||
wget ftp://xmlsoft.org/libxml2/libxslt-${LIBXSLT_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libxslt-${LIBXSLT_VERSION} ] ; then
|
||||
tar -zxf libxslt-${LIBXSLT_VERSION}.tar.gz
|
||||
# libxslt have too old config.sub for android
|
||||
cp libxml2-${LIBXML2_VERSION}/config.sub libxslt-${LIBXSLT_VERSION}
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libxslt.pc ] ; then
|
||||
mkdir -p libxslt-build-$ARCH
|
||||
pushd libxslt-build-$ARCH
|
||||
../libxslt-${LIBXSLT_VERSION}/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --with-libxml-prefix=${PREFIX} --without-python --without-crypto --enable-static --disable-shared
|
||||
make
|
||||
make install
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ ! -e libzip-${LIBZIP_VERSION}.tar.gz ] ; then
|
||||
wget http://www.nih.at/libzip/libzip-${LIBZIP_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libzip-${LIBZIP_VERSION} ] ; then
|
||||
tar -zxf libzip-${LIBZIP_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libzip.pc ] ; then
|
||||
mkdir -p libzip-build-$ARCH
|
||||
pushd libzip-build-$ARCH
|
||||
../libzip-${LIBZIP_VERSION}/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared
|
||||
make
|
||||
make install
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ ! -e libgit2-${LIBGIT2_VERSION}.tar.gz ] ; then
|
||||
wget -O libgit2-${LIBGIT2_VERSION}.tar.gz https://github.com/libgit2/libgit2/archive/v${LIBGIT2_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libgit2-${LIBGIT2_VERSION} ] ; then
|
||||
tar -zxf libgit2-${LIBGIT2_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libgit2.pc ] ; then
|
||||
mkdir -p libgit2-build-$ARCH
|
||||
pushd libgit2-build-$ARCH
|
||||
# -DCMAKE_CXX_COMPILER=arm-linux-androideabi-g++
|
||||
cmake -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_VERSION=Android -DCMAKE_C_COMPILER=${CC} -DCMAKE_FIND_ROOT_PATH=${PREFIX} -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DANDROID=ON -DSHA1_TYPE=builtin -DBUILD_CLAR=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=${PREFIX} ../libgit2-${LIBGIT2_VERSION}/
|
||||
make
|
||||
make install
|
||||
# Patch away pkg-config dependency to zlib, its there, i promise
|
||||
perl -pi -e 's/^(Requires.private:.*)zlib(.*)$/$1 $2/' $PKG_CONFIG_LIBDIR/libgit2.pc
|
||||
popd
|
||||
fi
|
||||
|
||||
if [ ! -e libusb-${LIBUSB_VERSION}.tar.gz ] ; then
|
||||
wget -O libusb-${LIBUSB_VERSION}.tar.gz https://github.com/libusb/libusb/archive/v${LIBUSB_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libusb-${LIBUSB_VERSION} ] ; then
|
||||
tar -zxf libusb-${LIBUSB_VERSION}.tar.gz
|
||||
fi
|
||||
if [ ! -e libusb-${LIBUSB_VERSION}/configure ] ; then
|
||||
pushd libusb-${LIBUSB_VERSION}
|
||||
mkdir m4
|
||||
autoreconf -i
|
||||
popd
|
||||
fi
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libusb-1.0.pc ] ; then
|
||||
mkdir -p libusb-build-$ARCH
|
||||
pushd libusb-build-$ARCH
|
||||
../libusb-${LIBUSB_VERSION}/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared --disable-udev
|
||||
make
|
||||
make install
|
||||
popd
|
||||
# Patch libusb-1.0.pc due to bug in there
|
||||
# Fix comming in 1.0.20
|
||||
sed -ie 's/Libs.private: -c/Libs.private: /' $PKG_CONFIG_LIBDIR/libusb-1.0.pc
|
||||
fi
|
||||
|
||||
if [ ! -e $PKG_CONFIG_LIBDIR/libdivecomputer.pc ] ; then
|
||||
mkdir -p libdivecomputer-build-$ARCH
|
||||
pushd libdivecomputer-build-$ARCH
|
||||
../../../../libdivecomputer/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared
|
||||
make
|
||||
make install
|
||||
popd
|
||||
fi
|
||||
|
||||
mkdir -p subsurface-build-$ARCH
|
||||
cd subsurface-build-$ARCH
|
||||
if [ ! -e Makefile ] ; then
|
||||
$QT5_ANDROID_BIN/qmake V=1 QT_CONFIG=+pkg-config ../../../
|
||||
fi
|
||||
make -j4
|
||||
make install INSTALL_ROOT=android_build
|
||||
# bug in androiddeployqt? why is it looking for something with the builddir in it?
|
||||
ln -fs android-libsubsurface.so-deployment-settings.json android-libsubsurface-build-${ARCH}.so-deployment-settings.json
|
||||
$QT5_ANDROID_BIN/androiddeployqt --output android_build
|
Loading…
Reference in a new issue