PKGBUILDs/extra/qt6-base/PKGBUILD

80 lines
3.2 KiB
Bash
Raw Normal View History

2020-12-08 16:50:33 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - explicitly link v5/v6 with libatomic
2021-05-28 16:23:40 +00:00
# - disable ibase for now, FTBFS
2020-12-08 16:50:33 +00:00
pkgname=qt6-base
2021-10-27 12:52:03 +00:00
_qtver=6.2.1
2020-12-08 16:50:33 +00:00
pkgver=${_qtver/-/}
2021-10-29 19:04:14 +00:00
pkgrel=2
2020-12-08 16:50:33 +00:00
arch=(x86_64)
url='https://www.qt.io'
license=(GPL3 LGPL3 FDL custom)
pkgdesc='A cross-platform application and UI framework'
depends=(libjpeg-turbo xcb-util-keysyms xcb-util-cursor libgl fontconfig xdg-utils
2021-10-01 13:05:05 +00:00
shared-mime-info xcb-util-wm libxrender libxi sqlite mesa vulkan-headers
tslib libinput libxkbcommon-x11 libproxy libcups double-conversion brotli libb2 md4c)
makedepends=(cmake ninja libfbclient mariadb-libs unixodbc postgresql alsa-lib gst-plugins-base-libs
gtk3 libpulse cups freetds xmlstarlet)
2020-12-08 16:50:33 +00:00
optdepends=('postgresql-libs: PostgreSQL driver'
'mariadb-libs: MariaDB driver'
'unixodbc: ODBC driver'
'libfbclient: Firebird/iBase driver'
'freetds: MS SQL driver'
'gtk3: GTK platform plugin'
'perl: for syncqt')
groups=(qt6)
2021-05-07 12:22:16 +00:00
_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
qt6-base-cflags.patch
2021-10-29 19:04:14 +00:00
qt6-base-nostrip.patch
qtbug-97811.patch::https://code.qt.io/cgit/qt/qtbase.git/patch/?id=ffc93236)
2021-10-27 12:52:03 +00:00
sha256sums=('2c5f07b5c3ea27d3fc1a46686ea3fb6724f94dddf1fb007de3eb0bdb87429079'
2021-02-10 22:31:04 +00:00
'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c'
2021-10-29 19:04:14 +00:00
'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094'
'98b6871dabbf2cc6ed1742bed7b53248e1051340015d7f0974f6f1bf92a7aa9b')
2021-01-23 16:06:24 +00:00
prepare() {
2021-10-29 19:04:14 +00:00
patch -d $_pkgfn -p1 < qt6-base-cflags.patch # Use system CFLAGS
patch -d $_pkgfn -p1 < qt6-base-nostrip.patch # Don't strip binaries with qmake
patch -d $_pkgfn -p1 < qtbug-97811.patch # Fix performance regression in scrollbars
2021-01-23 16:06:24 +00:00
}
2020-12-08 16:50:33 +00:00
build() {
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && echo "target_link_libraries(Core PRIVATE atomic)" >> ${_pkgfn}/src/corelib/CMakeLists.txt
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && echo "target_link_libraries(Gui PRIVATE atomic)" >> ${_pkgfn}/src/gui/CMakeLists.txt
2021-10-01 13:05:05 +00:00
cmake -B build -S $_pkgfn -G Ninja \
2020-12-08 16:50:33 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DINSTALL_BINDIR=lib/qt6/bin \
2021-05-07 12:22:16 +00:00
-DINSTALL_PUBLICBINDIR=usr/bin \
2021-03-19 12:28:48 +00:00
-DINSTALL_LIBEXECDIR=lib/qt6 \
2020-12-08 16:50:33 +00:00
-DINSTALL_DOCDIR=share/doc/qt6 \
-DINSTALL_ARCHDATADIR=lib/qt6 \
-DINSTALL_DATADIR=share/qt6 \
-DINSTALL_INCLUDEDIR=include/qt6 \
-DINSTALL_MKSPECSDIR=lib/qt6/mkspecs \
-DINSTALL_EXAMPLESDIR=share/doc/qt6/examples \
-DQT_FEATURE_journald=ON \
2021-03-03 23:14:39 +00:00
-DQT_FEATURE_openssl_linked=ON \
2021-05-28 16:23:40 +00:00
-DQT_FEATURE_system_sqlite=ON \
2021-10-01 13:05:05 +00:00
-DQT_FEATURE_sql_ibase=OFF \
-DCMAKE_CXX_FLAGS="${CXXFLAGS} -DUSE_X11" # https://bugreports.qt.io/browse/QTBUG-96392
2020-12-08 16:50:33 +00:00
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
install -Dm644 $_pkgfn/LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
2021-05-07 12:22:16 +00:00
# Install symlinks for user-facing tools
cd "$pkgdir"
mkdir usr/bin
while read _line; do
ln -s $_line
done < "$srcdir"/build/user_facing_tool_links.txt
2020-12-08 16:50:33 +00:00
}