mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 14:57:16 +08:00
28 lines
761 B
Bash
28 lines
761 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=doxygen
|
|
pkgver=1.8.3
|
|
pkgrel=1
|
|
pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
url="http://www.doxygen.org/"
|
|
depends=('gcc-libs' 'qt')
|
|
makedepends=('flex')
|
|
optdepends=('graphviz: for caller/callee graph generation'
|
|
'qt: for doxywizard')
|
|
source=("ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz")
|
|
md5sums=('54245ba38a30f50fd7ae6e62fc05de15')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
QTDIR=/usr ./configure --prefix /usr --with-doxywizard
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL=${startdir}/pkg/usr MAN1DIR=share/man/man1 install
|
|
}
|