From 77b6db9696abd317fad9ee49ecc0630c411eb0b6 Mon Sep 17 00:00:00 2001 From: Simeon Huang Date: Fri, 14 May 2021 10:16:47 +0100 Subject: [PATCH] add qt5 location module --- x11-packages/qt5-qtlocation/build.sh | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 x11-packages/qt5-qtlocation/build.sh diff --git a/x11-packages/qt5-qtlocation/build.sh b/x11-packages/qt5-qtlocation/build.sh new file mode 100644 index 000000000..f1523706b --- /dev/null +++ b/x11-packages/qt5-qtlocation/build.sh @@ -0,0 +1,34 @@ +TERMUX_PKG_HOMEPAGE=https://www.qt.io/ +TERMUX_PKG_DESCRIPTION="Qt 5 Location Library" +TERMUX_PKG_LICENSE="LGPL-3.0" +TERMUX_PKG_MAINTAINER="Simeon Huang " +TERMUX_PKG_VERSION=5.12.10 +TERMUX_PKG_SRCURL="https://download.qt.io/official_releases/qt/5.12/${TERMUX_PKG_VERSION}/submodules/qtlocation-everywhere-src-${TERMUX_PKG_VERSION}.tar.xz" +TERMUX_PKG_SHA256=ac1172b0dabd63fb256fe89db2fc41fd89eb2de54a828975b8ddd298cc07efb3 +TERMUX_PKG_DEPENDS="qt5-qtbase, qt5-qtdeclarative" +TERMUX_PKG_BUILD_DEPENDS="qt5-qtbase-cross-tools" +TERMUX_PKG_BUILD_IN_SRC=true +TERMUX_PKG_NO_STATICSPLIT=true + +termux_step_configure () { + "${TERMUX_PREFIX}/opt/qt/cross/bin/qmake" \ + -spec "${TERMUX_PREFIX}/lib/qt/mkspecs/termux-cross" +} + +termux_step_post_make_install() { + ####################################################### + ## + ## Fixes & cleanup. + ## + ####################################################### + + ## Drop QMAKE_PRL_BUILD_DIR because reference the build dir. + find "${TERMUX_PREFIX}/lib" -type f -name "libQt5Location*.prl" \ + -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' "{}" \; + find "${TERMUX_PREFIX}/lib" -type f -name "libQt5Position*.prl" \ + -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' "{}" \; + + ## Remove *.la files. + find "${TERMUX_PREFIX}/lib" -iname \*.la -delete +} +