void-packages/srcpkgs/qt5-doc/template
Juergen Buchmueller 1fb0790c38 qt5-doc: update to 5.6.1
Also remove conflicting usr/share/qt5/examples docs.
2016-09-14 07:48:59 +02:00

50 lines
1.7 KiB
Bash

# Template file for 'qt5-doc'
pkgname=qt5-doc
version=5.6.1
revision=1
_patch=-1
wrksrc="qt-everywhere-opensource-src-${version}"
hostmakedepends="python perl pkg-config qt5 qt5-tools qt5-qmake qt5-plugin-sqlite"
makedepends="qt5-devel qt5-tools-devel"
depends="qt5>=5.6.0 qt5-plugin-sqlite"
nocross=yes
homepage="http://qt.io/"
short_desc="A cross-platform application and UI framework (QT5) - Documentation"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-3, LGPL-2.1"
distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}${_patch}/single/qt-everywhere-opensource-src-${version}${_patch}.tar.xz"
checksum=ce08a7eb54661705f55fb283d895a089b267c688fabe017062bd71b9231736db
post_extract() {
# The file /usr/include/qt5/QtCore/qconfig.h is expected
# to reside in src/corelib/global/qconfig.h as well
ln -s /usr/include/qt5/QtCore/qconfig.h ${wrksrc}/qtbase/src/corelib/global/
}
do_build() {
export LD="$CXX"
unset CPP AR AS RANLIB
# Tools are expected to be found in qttools/bin
ln -sf /usr/lib/qt5/bin qttools/
# Some binaries are expected to be found in qtbase/bin
ln -sf /usr/lib/qt5/bin/{rcc,uic,moc} qtbase/bin/
./configure -confirm-license -opensource \
-prefix /usr \
-bindir /usr/lib/qt5/bin \
-datadir /usr/share/qt5 \
-headerdir /usr/include/qt5 \
-sysconfdir /etc/xdg \
-plugindir /usr/lib/qt5/plugins \
-docdir /usr/share/doc/qt5 \
-importdir /usr/lib/qt5/imports \
-translationdir /usr/share/qt5/translations \
-examplesdir /usr/share/qt5/examples \
-archdatadir /usr/lib/qt5 -qt-xcb
make ${makejobs} docs
}
do_install() {
make INSTALL_ROOT="$DESTDIR" install_docs
# Remove examples docs as they are contained in qt5-examples.
rm -rf ${DISTDIR}/usr/share/qt5/examples
}