mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
61 lines
1.7 KiB
Bash
61 lines
1.7 KiB
Bash
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Michael Hansen <zrax0111 gmail com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - skip qtwebengine on v5
|
|
|
|
pkgname=qt5-doc
|
|
_qtver=5.12.1
|
|
pkgver=${_qtver/-/}
|
|
pkgrel=1
|
|
arch=('any')
|
|
url='https://www.qt.io'
|
|
license=('GPL3' 'LGPL3' 'FDL' 'custom')
|
|
pkgdesc='A cross-platform application and UI framework (Documentation)'
|
|
depends=('qt5-base')
|
|
makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 'libxrandr' 'libxss' 'libxcomposite'
|
|
'gperf' 'nss' 'clang')
|
|
groups=('qt' 'qt5')
|
|
_pkgfqn="qt-everywhere-src-${_qtver}"
|
|
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz")
|
|
sha256sums=('caffbd625c7bc10ff8c5c7a27dbc7d84fa4de146975c0e1ffe904b514ccd6da4')
|
|
|
|
prepare() {
|
|
cd ${_pkgfqn}
|
|
|
|
ln -s /usr/bin qttools/
|
|
ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
|
|
|
|
# Hack to force using python2
|
|
cd "$srcdir"
|
|
mkdir -p bin
|
|
ln -s /usr/bin/python2 bin/python
|
|
}
|
|
|
|
build() {
|
|
cd ${_pkgfqn}
|
|
|
|
[[ $CARCH == "arm" ]] && CONFIG="-skip qtwebengine"
|
|
export PATH="$srcdir/bin:$PATH"
|
|
PYTHON=/usr/bin/python2 ./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 \
|
|
-examplesdir /usr/share/doc/qt/examples $CONFIG
|
|
make docs
|
|
}
|
|
|
|
package() {
|
|
cd ${_pkgfqn}
|
|
make -j1 INSTALL_ROOT="$pkgdir" install_docs
|
|
|
|
install -d "$pkgdir"/usr/share/licenses
|
|
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
|
|
|
|
# Fix conflicts with qt5-examples
|
|
rm -r "$pkgdir"/usr/share/doc/qt/examples
|
|
}
|