2016-03-27 18:29:11 +00:00
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - -no-reduce-relocations -- not available on ARM
|
|
|
|
# - explicitly disable x86 optimizations
|
2018-09-11 00:14:53 +00:00
|
|
|
# - -no-feature-getentropy for old kernel compatibility
|
2016-03-27 18:29:11 +00:00
|
|
|
|
2017-04-24 18:57:26 +00:00
|
|
|
pkgbase=qt5-base
|
|
|
|
pkgname=(qt5-base qt5-xcb-private-headers)
|
2020-11-22 17:35:21 +00:00
|
|
|
_qtver=5.15.2
|
2016-03-27 18:29:11 +00:00
|
|
|
pkgver=${_qtver/-/}
|
2020-12-22 15:10:49 +00:00
|
|
|
pkgrel=2
|
2017-11-17 23:29:39 +00:00
|
|
|
arch=('x86_64')
|
2019-02-04 13:32:38 +00:00
|
|
|
url='https://www.qt.io'
|
2016-10-04 12:25:09 +00:00
|
|
|
license=('GPL3' 'LGPL3' 'FDL' 'custom')
|
2016-03-27 18:29:11 +00:00
|
|
|
pkgdesc='A cross-platform application and UI framework'
|
2018-06-20 23:50:04 +00:00
|
|
|
depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 'fontconfig' 'xdg-utils'
|
2018-08-08 19:29:20 +00:00
|
|
|
'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'mesa'
|
2019-12-22 22:30:35 +00:00
|
|
|
'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 'double-conversion' 'md4c')
|
2019-01-18 13:31:41 +00:00
|
|
|
makedepends=('libfbclient' 'mariadb-libs' 'sqlite' 'unixodbc' 'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
|
2018-03-23 12:40:43 +00:00
|
|
|
'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers')
|
2016-03-27 18:29:11 +00:00
|
|
|
optdepends=('qt5-svg: to use SVG icon themes'
|
2019-12-22 22:30:35 +00:00
|
|
|
'qt5-wayland: to run Qt applications in a Wayland session'
|
2019-02-04 13:32:38 +00:00
|
|
|
'qt5-translations: for some native UI translations'
|
2016-03-27 18:29:11 +00:00
|
|
|
'postgresql-libs: PostgreSQL driver'
|
2019-01-18 13:31:41 +00:00
|
|
|
'mariadb-libs: MariaDB driver'
|
2016-03-27 18:29:11 +00:00
|
|
|
'unixodbc: ODBC driver'
|
|
|
|
'libfbclient: Firebird/iBase driver'
|
2016-04-26 12:32:51 +00:00
|
|
|
'freetds: MS SQL driver'
|
2020-03-06 13:10:46 +00:00
|
|
|
'gtk3: GTK platform plugin'
|
|
|
|
'perl: for fixqt4headers and syncqt')
|
2016-10-04 12:25:09 +00:00
|
|
|
conflicts=('qtchooser')
|
2016-03-27 18:29:11 +00:00
|
|
|
groups=('qt' 'qt5')
|
2017-12-13 21:10:47 +00:00
|
|
|
_pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}"
|
2020-02-11 00:14:32 +00:00
|
|
|
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
|
2020-11-22 17:35:21 +00:00
|
|
|
qt5-base-cflags.patch)
|
|
|
|
sha256sums=('909fad2591ee367993a75d7e2ea50ad4db332f05e1c38dd7a5a274e156a4e0f8'
|
|
|
|
'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c')
|
2016-03-27 18:29:11 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ${_pkgfqn}
|
|
|
|
|
2020-02-11 00:14:32 +00:00
|
|
|
patch -p1 -i ../qt5-base-cflags.patch # Use system CFLAGS
|
2016-03-27 18:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${_pkgfqn}
|
|
|
|
|
2018-06-20 23:50:04 +00:00
|
|
|
./configure -confirm-license -opensource -v \
|
2016-03-27 18:29:11 +00:00
|
|
|
-prefix /usr \
|
|
|
|
-docdir /usr/share/doc/qt \
|
|
|
|
-headerdir /usr/include/qt \
|
|
|
|
-archdatadir /usr/lib/qt \
|
|
|
|
-datadir /usr/share/qt \
|
|
|
|
-sysconfdir /etc/xdg \
|
|
|
|
-examplesdir /usr/share/doc/qt/examples \
|
|
|
|
-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
|
|
|
|
-system-sqlite \
|
|
|
|
-openssl-linked \
|
|
|
|
-nomake examples \
|
|
|
|
-no-rpath \
|
|
|
|
-dbus-linked \
|
|
|
|
-system-harfbuzz \
|
|
|
|
-journald \
|
2019-07-01 02:00:37 +00:00
|
|
|
-no-mimetype-database \
|
2016-03-27 18:29:11 +00:00
|
|
|
-no-use-gold-linker \
|
|
|
|
-no-reduce-relocations \
|
2020-08-27 23:23:53 +00:00
|
|
|
-no-strip \
|
2016-03-27 18:29:11 +00:00
|
|
|
-no-sse2 \
|
|
|
|
-no-sse3 \
|
|
|
|
-no-ssse3 \
|
|
|
|
-no-sse4.1 \
|
|
|
|
-no-sse4.2 \
|
|
|
|
-no-avx \
|
2018-01-21 19:37:53 +00:00
|
|
|
-no-avx2 \
|
|
|
|
-no-feature-getentropy
|
2016-03-27 18:29:11 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2017-04-24 18:57:26 +00:00
|
|
|
package_qt5-base() {
|
|
|
|
pkgdesc='A cross-platform application and UI framework'
|
|
|
|
|
2016-03-27 18:29:11 +00:00
|
|
|
cd ${_pkgfqn}
|
|
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
|
|
|
2018-12-10 13:21:22 +00:00
|
|
|
install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
|
2016-03-27 18:29:11 +00:00
|
|
|
|
|
|
|
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
|
|
|
|
find "${pkgdir}/usr/lib" -type f -name '*.prl' \
|
|
|
|
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
|
|
|
|
|
|
|
|
# Fix wrong qmake path in pri file
|
|
|
|
sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
|
|
|
|
"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
|
|
|
|
|
2016-10-04 12:25:09 +00:00
|
|
|
# Symlinks for backwards compatibility
|
|
|
|
for b in "${pkgdir}"/usr/bin/*; do
|
2018-12-10 13:21:22 +00:00
|
|
|
ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
|
2016-03-27 18:29:11 +00:00
|
|
|
done
|
|
|
|
}
|
2017-04-24 18:57:26 +00:00
|
|
|
|
|
|
|
package_qt5-xcb-private-headers() {
|
|
|
|
pkgdesc='Private headers for Qt5 Xcb'
|
|
|
|
|
|
|
|
depends=("qt5-base=$pkgver")
|
|
|
|
optdepends=()
|
|
|
|
groups=()
|
|
|
|
conflicts=()
|
|
|
|
|
|
|
|
cd ${_pkgfqn}
|
|
|
|
install -d -m755 "$pkgdir"/usr/include/qtxcb-private
|
|
|
|
cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
|
|
|
|
}
|