mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:57:14 +08:00
28 lines
792 B
Bash
28 lines
792 B
Bash
#
|
|
# QT Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=qt-docs
|
|
pkgver=4.7.4
|
|
pkgrel=1
|
|
pkgdesc='The Qt gui toolkit documentation'
|
|
arch=('any')
|
|
url='http://qt.nokia.com/'
|
|
license=('GPL3' 'LGPL')
|
|
options=('docs')
|
|
depends=('qt')
|
|
replaces=('qt-doc')
|
|
conflicts=("qt-doc=${pkgver}")
|
|
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
|
|
source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz")
|
|
md5sums=('ddf7d83f912cf1283aa066368464fa22')
|
|
|
|
package(){
|
|
cd ${srcdir}/${_pkgfqn}
|
|
install -d ${pkgdir}/usr/share/doc/qt
|
|
cp -r doc/* ${pkgdir}/usr/share/doc/qt
|
|
cp -r demos ${pkgdir}/usr/share/doc/qt
|
|
cp -r examples ${pkgdir}/usr/share/doc/qt
|
|
} |