mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 00:57:14 +08:00
28 lines
773 B
Bash
28 lines
773 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# contributor: abveritas@chakra-project.org
|
|
|
|
pkgname=doxygen
|
|
pkgver=1.8.5
|
|
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')
|
|
makedepends=('flex' 'qt' 'graphviz')
|
|
optdepends=('graphviz: for caller/callee graph generation'
|
|
'qt: for doxywizard')
|
|
source=("ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz")
|
|
md5sums=('db51274568755e2c75c2657e30a78a55')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
QTDIR=/usr ./configure --prefix /usr --with-doxywizard
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL=${pkgdir}/usr MAN1DIR=share/man/man1 install
|
|
}
|