PKGBUILDs/extra/qt6-base/PKGBUILD

139 lines
4.1 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>
2021-05-28 16:23:40 +00:00
# - disable ibase for now, FTBFS
2023-04-12 23:10:05 +00:00
# - removed -DFEATURE_no_direct_extern_access=ON
2020-12-08 16:50:33 +00:00
pkgname=qt6-base
2023-10-12 12:44:11 +00:00
_qtver=6.6.0
2020-12-08 16:50:33 +00:00
pkgver=${_qtver/-/}
2023-11-04 20:18:19 +00:00
pkgrel=3
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'
2023-10-12 12:44:11 +00:00
depends=(brotli
dbus
double-conversion
fontconfig
freetype2
gcc-libs
glib2
glibc
harfbuzz
icu
krb5
libb2
libcups
libdrm
libgl
libice
libinput
libjpeg-turbo
libpng
libproxy
libsm
libx11
libxcb
libxkbcommon
libxkbcommon-x11
md4c
mesa
mtdev
openssl
pcre2
shared-mime-info
sqlite
systemd-libs
tslib
vulkan-headers
xcb-util-cursor
xcb-util-image
xcb-util-keysyms
xcb-util-renderutil
xcb-util-wm
xdg-utils
zlib
zstd)
makedepends=(alsa-lib
cmake
cups
freetds
gst-plugins-base-libs
gtk3
libfbclient
libpulse
mariadb-libs
ninja
postgresql
unixodbc
xmlstarlet)
optdepends=('freetds: MS SQL driver'
'gdk-pixbuf2: GTK platform plugin'
2020-12-08 16:50:33 +00:00
'gtk3: GTK platform plugin'
2023-10-12 12:44:11 +00:00
'libfbclient: Firebird/iBase driver'
'mariadb-libs: MariaDB driver'
'pango: GTK platform plugin'
'perl: for syncqt'
'postgresql-libs: PostgreSQL driver'
'qt6-wayland: to run Qt6 applications in a Wayland session'
'unixodbc: ODBC driver')
2020-12-08 16:50:33 +00:00
groups=(qt6)
2022-04-13 00:20:08 +00:00
_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
2021-05-07 12:22:16 +00:00
source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
2022-04-13 00:20:08 +00:00
qt6-base-cflags.patch
2023-10-12 12:44:11 +00:00
qt6-base-nostrip.patch
2023-11-04 20:18:19 +00:00
libxkbcommon-1.6.patch::https://code.qt.io/cgit/qt/qtbase.git/patch/?id=8af35d27
qt6-base-fix-a11y.patch::https://code.qt.io/cgit/qt/qtbase.git/patch?id=197e5915)
2023-10-12 12:44:11 +00:00
sha256sums=('039d53312acb5897a9054bd38c9ccbdab72500b71fdccdb3f4f0844b0dd39e0e'
2021-12-22 03:42:05 +00:00
'5411edbe215c24b30448fac69bd0ba7c882f545e8cf05027b2b6e2227abc5e78'
2023-10-12 12:44:11 +00:00
'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094'
2023-11-04 20:18:19 +00:00
'f3e81eca8e41b93889943a20da94d683fb5b706cb0f9dc8b851d653df3a1bbf6'
'40fda77b524f2f46a7081f68f68650edff1b02220756363fc5222b1349de9e9b')
2021-01-23 16:06:24 +00:00
prepare() {
2022-04-13 00:20:08 +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
2023-10-12 12:44:11 +00:00
patch -d $_pkgfn -p1 < libxkbcommon-1.6.patch # Fix build with libxkbcommon 1.6
2023-11-04 20:18:19 +00:00
patch -d $_pkgfn -p1 < qt6-base-fix-a11y.patch # Fix accessibility on Wayland
2021-01-23 16:06:24 +00:00
}
2020-12-08 16:50:33 +00:00
build() {
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 \
2022-01-31 18:14:47 +00:00
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
2020-12-08 16:50:33 +00:00
-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 \
2023-04-12 14:49:27 +00:00
-DFEATURE_journald=ON \
2023-06-24 03:13:21 +00:00
-DFEATURE_libproxy=ON \
2023-04-12 14:49:27 +00:00
-DFEATURE_openssl_linked=ON \
-DFEATURE_system_sqlite=ON \
-DFEATURE_system_xcb_xinput=ON \
2021-10-01 13:05:05 +00:00
-DQT_FEATURE_sql_ibase=OFF \
2022-10-01 15:46:50 +00:00
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS
2020-12-08 16:50:33 +00:00
cmake --build build
}
package() {
2021-12-18 01:19:20 +00:00
depends+=(qt6-translations)
2020-12-08 16:50:33 +00:00
DESTDIR="$pkgdir" cmake --install build
2022-10-01 15:46:50 +00:00
install -Dm644 $_pkgfn/LICENSES/* -t "$pkgdir"/usr/share/licenses/$pkgbase
2020-12-08 16:50:33 +00:00
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
}