blob: aacea3ddc8015ba9c0a6b5d6f7bb146061e88b9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Michael Hansen <zrax0111 gmail com>
pkgbase=qt5-doc
pkgname=(qt5-doc qt5-examples)
_basever=5.15.18
pkgver=$_basever
pkgrel=1
arch=('any')
url='https://www.qt.io'
license=('GPL3' 'LGPL3' 'FDL' 'custom')
makedepends=('qt5-tools' 'python' 'pciutils' 'libxtst' 'libxcursor' 'libxrandr' 'libxss' 'libxcomposite' 'libxkbfile'
'gperf' 'nss' 'clang' 'nodejs' 'ninja')
groups=('qt5')
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
source=("https://download.qt.io/archive/qt/${pkgver%.*}/${pkgver}/single/$_pkgfqn.tar.xz"
no-qmake.patch
qt-everywhere-src-5.15.17-assimp.patch)
sha256sums=('cea1fbabf02455f3f0e8eaa839f5d6f45cdb56b62c8a83af5c1d00ac05f912ea'
'db90fa31381fa0814c9c8c803c9e2f9b36bdd6f52da753399e500c0692352498'
'9d54e70051adfeed818db437f266e3bba5ccd2f5f9e056515281ee2f7ff71bac')
prepare() {
cd ${_pkgfqn/opensource-/}
ln -s /usr/bin qttools/
ln -s /usr/bin/{rcc,uic,moc,qmake} qtbase/bin/
patch -d qtbase -p1 < "$srcdir"/no-qmake.patch # Use system qmake
# Fix build with python 3.13
sed -e '/import pipes/d' -i qtwebengine/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
# build issues arroung assimp
patch -p1 < "$srcdir"/qt-everywhere-src-5.15.17-assimp.patch
}
build() {
cd ${_pkgfqn/opensource-/}
./configure -confirm-license -opensource \
-prefix /usr \
-docdir /usr/share/doc/qt \
-headerdir /usr/include/qt \
-archdatadir /usr/lib/qt \
-datadir /usr/share/qt \
-sysconfdir /etc/xdg \
-nomake examples
make docs
}
package_qt5-doc() {
pkgdesc='A cross-platform application and UI framework (Documentation)'
depends=('qt5-base')
cd ${_pkgfqn/opensource-/}
make INSTALL_ROOT="$pkgdir" install_docs
install -d "$pkgdir"/usr/share/licenses
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
}
package_qt5-examples() {
pkgdesc='Examples and demos from qt5 documentation'
depends=('qt5-doc')
_base="$pkgdir"/usr/share/doc/qt/examples
# The various example dirs have conflicting .pro files, but
# QtCreator requires them to be in the same top-level directory.
# Matching the Qt installer, only the qtbase project is kept.
mkdir -p $_base
cp ${_pkgfqn/opensource-/}/qtbase/examples/examples.pro $_base
_fdirs=$(find "${_pkgfqn/opensource-/}" -maxdepth 2 -type d -name examples)
for _dir in $_fdirs; do
rm -f $_dir/{examples.pro,README}
cp -rn $_dir/* $_base
done
}
|