mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:47:13 +08:00
26 lines
872 B
Bash
26 lines
872 B
Bash
|
# $Id: PKGBUILD 69698 2010-02-21 23:39:41Z dan $
|
||
|
# Maintainer: Dan McGee <dan@archlinux.org>
|
||
|
pkgname=doxygen
|
||
|
pkgver=1.6.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
|
||
|
license=('GPL')
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.doxygen.org/"
|
||
|
depends=('gcc-libs')
|
||
|
# qt required to build and run doxywizard, but don't want to drag it in
|
||
|
makedepends=('flex' 'qt')
|
||
|
optdepends=('graphviz: for caller/callee graph generation'
|
||
|
'qt: for doxywizard')
|
||
|
source=(ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
QTDIR=/usr ./configure --prefix /usr --with-doxywizard
|
||
|
make || return 1
|
||
|
make INSTALL=${startdir}/pkg/usr MAN1DIR=share/man/man1 install
|
||
|
}
|
||
|
|
||
|
md5sums=('2d6ea20a9d850d94321cee78bab7bb87')
|
||
|
sha256sums=('a3a6524b5fc1da084fd0e081507c99240abaffff85f76ef7b15c9fb3ae248492')
|