PKGBUILDs/extra/qt5-base/PKGBUILD

130 lines
4 KiB
Bash
Raw Normal View History

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
2022-02-12 00:12:44 +00:00
# - remove ltcg from qmake-config.patch, CONFIG+=fat-static-lto from qmake call
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)
2022-09-09 12:44:20 +00:00
_basever=5.15.6
2022-10-12 12:34:54 +00:00
pkgver=5.15.6+kde+r180
2022-10-22 14:34:24 +00:00
pkgrel=2
2022-10-12 12:34:54 +00:00
_commit=23996edc504e9e5b5b0ec907380598bbe4bf591c
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')
2021-04-08 12:59:09 +00:00
makedepends=('libfbclient' 'mariadb-libs' 'unixodbc' 'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers' 'git')
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'
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')
2022-03-06 17:31:25 +00:00
_pkgfqn=${pkgbase/5-/}
2021-04-08 12:59:09 +00:00
source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
2022-02-11 21:18:59 +00:00
qmake-cflags.patch
qmake-config.patch)
2021-04-08 12:59:09 +00:00
sha256sums=('SKIP'
2021-12-21 20:54:47 +00:00
'5411edbe215c24b30448fac69bd0ba7c882f545e8cf05027b2b6e2227abc5e78'
2022-02-11 21:18:59 +00:00
'4abc22150fa3e06b2fdcec32146abc9be4e316692aa4d5bd5aa53b4b726783fa')
2022-01-29 22:07:33 +00:00
options=(debug)
2021-04-08 12:59:09 +00:00
pkgver() {
cd $_pkgfqn
2022-03-06 17:31:25 +00:00
echo "$_basever+kde+r"`git rev-list --count v$_basever-lts-lgpl..$_commit`
2021-04-08 12:59:09 +00:00
}
2016-03-27 18:29:11 +00:00
prepare() {
cd ${_pkgfqn}
2022-02-11 21:18:59 +00:00
patch -p1 < ../qmake-cflags.patch # Use system CFLAGS in qmake
patch -p1 < ../qmake-config.patch # Don't strip binaries with qmake and use -ltcg, cf. QTBUG-73834
2022-02-12 00:12:44 +00:00
sed -i 's/ltcg//' mkspecs/common/gcc-base.conf
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
2021-12-22 15:53:05 +00:00
# No configure flag for fat static libs with lto
2022-02-12 00:12:44 +00:00
bin/qmake -- -redo
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'
2021-12-18 01:19:01 +00:00
depends+=(qt5-translations)
2017-04-24 18:57:26 +00:00
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/
}