mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:37:14 +08:00
28 lines
718 B
Bash
28 lines
718 B
Bash
#
|
|
# QT Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=qt-docs
|
|
pkgver=4.8.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}")
|
|
categories=('documentation')
|
|
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
|
|
source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz")
|
|
md5sums=('89c5ecba180cae74c66260ac732dc5cb')
|
|
|
|
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
|
|
} |