mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
793 B
Bash
25 lines
793 B
Bash
|
# $Id: PKGBUILD 52067 2009-09-15 01:32:37Z eric $
|
||
|
# Maintainer: Dan McGee <dan@archlinux.org>
|
||
|
pkgname=doxygen
|
||
|
pkgver=1.6.1
|
||
|
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=('2ec343643e134f0d3ce2069420bcb4f0')
|