diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-02 23:55:33 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-02 23:55:33 (GMT) |
commit | 907606040ebd98338b939452ee37698b62718820 (patch) | |
tree | 5749ec334aa0a0ff818eb2c6a2d7ecbba319e603 /abs/extra-testing/doxygen | |
parent | 276298661d3187fcc0ac8c48416b5f7fb22a2b51 (diff) | |
download | linhes_pkgbuild-907606040ebd98338b939452ee37698b62718820.zip linhes_pkgbuild-907606040ebd98338b939452ee37698b62718820.tar.gz linhes_pkgbuild-907606040ebd98338b939452ee37698b62718820.tar.bz2 |
Added ProjectM and libvisual-projectm.
Diffstat (limited to 'abs/extra-testing/doxygen')
-rw-r--r-- | abs/extra-testing/doxygen/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/abs/extra-testing/doxygen/PKGBUILD b/abs/extra-testing/doxygen/PKGBUILD new file mode 100644 index 0000000..5959ce5 --- /dev/null +++ b/abs/extra-testing/doxygen/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 14308 2008-10-05 15:59:28Z dan $ +# Maintainer: Dan McGee <dan@archlinux.org> +pkgname=doxygen +pkgver=1.5.7.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' 'qt3') +optdepends=('graphviz: for caller/callee graph generation' + 'qt3: for doxywizard') +source=(ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz) + +build() { + . /etc/profile.d/qt3.sh + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix /usr --with-doxywizard + make || return 1 + make INSTALL=${startdir}/pkg/usr MAN1DIR=share/man/man1 install +} + +md5sums=('bc35dfd52bdae0247b862e67e0cbe7d7') |