Files
BMLFS/build-scripts/qt5-qtquickcontrols2.build

55 lines
2.1 KiB
Bash

#! /bin/bash
# Qt5 QtQuickControls2 5.15.3_git20201110
# Source: https://invent.kde.org/qt/qt/qtquickcontrols2/-/archive/a2593ff9cf5d0af885c20c2e9f9faa6ca4f1c1a3/qtquickcontrols2-a2593ff9cf5d0af885c20c2e9f9faa6ca4f1c1a3.tar.gz
#
# $BUILD = Directory to temporarily install
# $PKGS = Directory to store built packages
#
# DEPS
# Required: qt5-qtbase qt5-qtdeclarative qt5-qtgraphicaleffects
# Recommended: NONE
# Optional: NONE
# Per Alpine:
# Make configure think we are running in a git directory
# This makes it symlink the include files to the right directory
mkdir .git
export CFLAGS="-I/opt/X11/include -L/opt/X11/lib "
export CXXFLAGS=$CFLAGS
export LDFLAGS="-Wl,-lexecinfo "
export PATH="$(pwd):$PATH"
qmake-qt5
read -p "Compile?" && LD_LIBRARY_PATH=/opt/X11/lib:/opt/openssl/lib make -j2 &&
sudo -S make INSTALL_ROOT=$BUILD install &&
unset CFLAGS CXXFLAGS LDFLAGS && \
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
find "$BUILD/opt/qt5/lib" -type f -name '*.prl' \
-exec sudo sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
cat > /tmp/slack-desc << "EOF"
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
qt5-qtquickcontrols2: Qt5 - QtControls2
qt5-qtquickcontrols2:
qt5-qtquickcontrols2: A cross-platform C++ application framework. Qt's primary feature
qt5-qtquickcontrols2: is its rich set of widgets that provide standard GUI functionality.
qt5-qtquickcontrols2:
qt5-qtquickcontrols2: http://qt-project.org
qt5-qtquickcontrols2:
EOF
sudo -S mv -v /tmp/slack-desc install/ &&
sudo -S makepkg -l y -c n $PKGS/qt5-qtquickcontrols2-5.15.3_git20201110-$(uname -m)-mlfs.txz &&
sudo -S rm -rf ${BUILD}/*