PKGBUILDs/qt5/android-arm64-v8a/PKGBUILD

161 lines
4.9 KiB
Bash
Raw Normal View History

# PKGCONFIG for android-qt5
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Jiaxi Hu <sftrytry _AT_ gmail _DOT_ com>
# Contributor: jimmy00784 <jimmy00784@gmail.com>
# Contributor: Ricardo (XenGi) Band <email@ricardo.band>
# Contributor: Martchus <martchus@gmx.net>
# Useful link to keep track of latest API changes:
# https://developer.android.com/ndk/downloads/revision_history
android_arch=arm64-v8a
# Minimum Android platform based on:
# https://developer.android.com/about/dashboards/
export ANDROID_MINIMUM_PLATFORM=${ANDROID_MINIMUM_PLATFORM:-21}
export ANDROID_NDK_ROOT=${ANDROID_NDK_ROOT:-/opt/android-ndk}
export ANDROID_SDK_ROOT=${ANDROID_SDK_ROOT:-/opt/android-sdk}
export OPENSSL_PREFIX=${OPENSSL_PREFIX:-/opt/android-libs/${android_arch}}
# skip building mapboxgl as it increases compile time significantly and
# likely not a lot of people actually using it; if you need it, just remove the
# following line:
_mapboxcfg='QT.global.disabled_features+=geoservices_mapboxgl'
_pkgname=android-qt5
pkgname=${_pkgname}-${android_arch}
2018-09-26 16:58:30 +02:00
pkgver=5.11.2
pkgrel=1
pkgdesc="Qt 5 for Android"
arch=('x86_64')
url='https://www.qt.io'
license=('GPL3' 'LGPL')
makedepends=('libgl'
'sqlite'
'zlib'
'python2'
'python' # Qt Qml requires Python 3
'ruby'
'gperf'
'libxslt'
'fontconfig'
'android-openssl-'$android_arch)
depends=('java-runtime-headless>=7'
'apache-ant'
'android-ndk'
"android-platform-$ANDROID_MINIMUM_PLATFORM"
'android-sdk'
'android-sdk-build-tools'
'android-sdk-platform-tools')
groups=('android-qt5')
2018-08-31 22:57:38 +02:00
optdepends=("android-openssl-${android_arch}: OpenSSL support"
"android-google-apis-${android_arch}: AVD support"
"android-system-image-${android_arch}: AVD support")
options=('!strip'
'!buildflags'
'staticlibs'
'!emptydirs')
_pkgfqn="qt-everywhere-src-${pkgver}"
source=("http://download.qt-project.org/official_releases/qt/${pkgver:0:4}/${pkgver}/single/${_pkgfqn}.tar.xz"
'0001-Fix-clang-build.patch')
sha256sums=('c6f0854d7de7bde80cfd8cc85bb7152b'
'todo')
prepare() {
cd ${_pkgfqn}
patch -Np1 -i "../0001-Fix-clang-build.patch"
}
get_last() {
ls $1 | sort -V | tail -n 1
}
build() {
cd ${_pkgfqn}
unset CC CXX CFLAGS CXXFLAGS LDFLAGS CHOST QMAKESPEC QTDIR CARCH
export ANDROID_BUILD_TOOLS_REVISION=${ANDROID_BUILD_TOOLS_REVISION:-$(get_last ${ANDROID_SDK_ROOT}/build-tools)}
export ANDROID_API_VERSION=${ANDROID_API_VERSION:-android-$ANDROID_MINIMUM_PLATFORM}
export ANDROID_NDK_PLATFORM=${ANDROID_NDK_PLATFORM:-android-$ANDROID_MINIMUM_PLATFORM}
export PYTHON=/usr/bin/python2
local prefix=/opt/${_pkgname}/${pkgver}/${android_arch}
configue_opts="
-confirm-license
-opensource
-silent
-prefix ${prefix}
-docdir ${prefix}/doc
-xplatform android-clang
-nomake tests
-nomake examples
-android-ndk ${ANDROID_NDK_ROOT}
-android-sdk ${ANDROID_SDK_ROOT}
-android-ndk-host linux-x86_64
-android-toolchain-version 4.9
-skip qtserialport
-no-warnings-are-errors
-no-pkg-config
-qt-zlib
-qt-freetype
-openssl-runtime
-android-arch ${android_arch}
-android-ndk-platform ${ANDROID_NDK_PLATFORM}
-I${OPENSSL_PREFIX}/include
${_mapboxcfg}"
# add architecture specific options
case "$android_arch" in
x86*)
configue_opts+="
-no-sql-mysql
-no-sql-psql"
;;
*)
;;
esac
./configure ${configue_opts}
make $MAKEFLAGS
}
package() {
cd ${_pkgfqn}
make INSTALL_ROOT=${pkgdir} install
case "$android_arch" in
arm64-v8a)
toolchain=aarch64-linux-android-4.9
stripFolder=aarch64-linux-android
;;
armeabi-v7a)
toolchain=arm-linux-androideabi-4.9
stripFolder=arm-linux-androideabi
;;
x86)
toolchain=x86-4.9
stripFolder=i686-linux-android
;;
x86_64)
toolchain=x86_64-4.9
stripFolder=x86_64-linux-android
;;
esac
local STRIP=${ANDROID_NDK_ROOT}/toolchains/${toolchain}/prebuilt/linux-x86_64/${stripFolder}/bin/strip
find ${pkgdir}/opt/${_pkgname}/${pkgver}/${android_arch}/lib -name 'lib*.so' -exec ${STRIP} {} \;
find ${pkgdir}/opt/${_pkgname}/${pkgver}/${android_arch}/lib \( -name 'lib*.a' ! -name 'libQt5Bootstrap.a' ! -name 'libQt5QmlDevTools.a' \) -exec ${STRIP} {} \;
find ${pkgdir}/opt/${_pkgname}/${pkgver}/${android_arch}/plugins -name 'lib*.so' -exec ${STRIP} {} \;
# drop QMAKE_PRL_BUILD_DIR because reference the build dir
find "${pkgdir}/" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
}