add qt5-qtdeclarative submodule (version 5.12.10) (#298)
This commit is contained in:
parent
7de9cbfa3c
commit
c73e1cea95
111
x11-packages/qt5-qtdeclarative/build.sh
Normal file
111
x11-packages/qt5-qtdeclarative/build.sh
Normal file
@ -0,0 +1,111 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://www.qt.io/
|
||||
TERMUX_PKG_DESCRIPTION="The Qt Declarative module provides classes for using GUIs created using QML"
|
||||
TERMUX_PKG_LICENSE="LGPL-3.0"
|
||||
TERMUX_PKG_MAINTAINER="Simeon Huang <symeon@librehat.com>"
|
||||
TERMUX_PKG_VERSION=5.12.10
|
||||
TERMUX_PKG_REVISION=2
|
||||
TERMUX_PKG_SRCURL="https://download.qt.io/official_releases/qt/5.12/${TERMUX_PKG_VERSION}/submodules/qtdeclarative-everywhere-src-${TERMUX_PKG_VERSION}.tar.xz"
|
||||
TERMUX_PKG_SHA256=ae56708646954f93eae087f20408fdbce9b977af565202ddcb4a3119e90f8a16
|
||||
TERMUX_PKG_DEPENDS="qt5-qtbase"
|
||||
TERMUX_PKG_BUILD_DEPENDS="qt5-qtbase-cross-tools"
|
||||
TERMUX_PKG_BUILD_IN_SRC=true
|
||||
TERMUX_PKG_NO_STATICSPLIT=true
|
||||
|
||||
# Not packaging the host tools and libraries for now (unlikely to be useful)
|
||||
TERMUX_PKG_RM_AFTER_INSTALL="
|
||||
opt/qt
|
||||
"
|
||||
|
||||
# Replacing the old qt5-base packages
|
||||
TERMUX_PKG_REPLACES="qt5-declarative"
|
||||
|
||||
termux_step_pre_configure () {
|
||||
#######################################################
|
||||
##
|
||||
## Hijack the bootstrap library
|
||||
##
|
||||
#######################################################
|
||||
for i in a prl; do
|
||||
cp -p "${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}" \
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}.bak"
|
||||
ln -s -f "${TERMUX_PREFIX}/lib/libQt5Bootstrap.${i}" \
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}"
|
||||
done
|
||||
unset i
|
||||
}
|
||||
|
||||
termux_step_configure () {
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/bin/qmake" \
|
||||
-spec "${TERMUX_PREFIX}/lib/qt/mkspecs/termux-cross"
|
||||
}
|
||||
|
||||
termux_step_make() {
|
||||
make -j "${TERMUX_MAKE_PROCESSES}"
|
||||
}
|
||||
|
||||
termux_step_make_install() {
|
||||
make install
|
||||
|
||||
#######################################################
|
||||
##
|
||||
## Compiling necessary binaries for target.
|
||||
##
|
||||
#######################################################
|
||||
|
||||
## libQt5QmlDevTools.a (qt5-declarative)
|
||||
cd "${TERMUX_PKG_SRCDIR}/src/qmldevtools" && {
|
||||
make clean
|
||||
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/bin/qmake" \
|
||||
-spec "${TERMUX_PREFIX}/lib/qt/mkspecs/termux-cross"
|
||||
|
||||
make -j "${TERMUX_MAKE_PROCESSES}"
|
||||
install -Dm644 ../../lib/libQt5QmlDevTools.a "${TERMUX_PREFIX}/lib/libQt5QmlDevTools.a"
|
||||
install -Dm644 ../../lib/libQt5QmlDevTools.prl "${TERMUX_PREFIX}/lib/libQt5QmlDevTools.prl"
|
||||
}
|
||||
|
||||
## Qt Declarative utilities.
|
||||
for i in qmlcachegen qmlimportscanner qmllint qmlmin; do
|
||||
cd "${TERMUX_PKG_SRCDIR}/tools/${i}" && {
|
||||
make clean
|
||||
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/bin/qmake" \
|
||||
-spec "${TERMUX_PREFIX}/lib/qt/mkspecs/termux-cross"
|
||||
|
||||
make -j "${TERMUX_MAKE_PROCESSES}"
|
||||
install -Dm700 "../../bin/${i}" "${TERMUX_PREFIX}/bin/${i}"
|
||||
}
|
||||
done
|
||||
|
||||
#######################################################
|
||||
##
|
||||
## Fixes & cleanup.
|
||||
##
|
||||
#######################################################
|
||||
|
||||
# Limit the scope, otherwise it'll touch qtbase files
|
||||
for pref in Qml Quick Packet; do
|
||||
## Drop QMAKE_PRL_BUILD_DIR because reference the build dir.
|
||||
find "${TERMUX_PREFIX}/lib" -type f -name "libQt5${pref}*.prl" \
|
||||
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' "{}" \;
|
||||
done
|
||||
unset pref
|
||||
|
||||
## Remove *.la files.
|
||||
find "${TERMUX_PREFIX}/lib" -iname \*.la -delete
|
||||
|
||||
|
||||
#######################################################
|
||||
##
|
||||
## Restore the bootstrap library
|
||||
##
|
||||
#######################################################
|
||||
for i in a prl; do
|
||||
rm -f "${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}"
|
||||
cp -p "${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}.bak" \
|
||||
"${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}"
|
||||
rm -f "${TERMUX_PREFIX}/opt/qt/cross/lib/libQt5Bootstrap.${i}.bak"
|
||||
done
|
||||
unset i
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user