diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 01:37:31 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 01:37:31 -0700 |
commit | 82ea7aec5125a7b5693aa9a0a157b58384e48b39 (patch) | |
tree | b66105d26e5321cefac57f73e77629ffae0ba1c1 /var | |
parent | d474eeb42425503fd0084aa292c273d7bc6b02be (diff) | |
parent | 99ca0f31531059037a6508aab8ecc62d080f8ce5 (diff) | |
download | spack-82ea7aec5125a7b5693aa9a0a157b58384e48b39.tar.gz spack-82ea7aec5125a7b5693aa9a0a157b58384e48b39.tar.bz2 spack-82ea7aec5125a7b5693aa9a0a157b58384e48b39.tar.xz spack-82ea7aec5125a7b5693aa9a0a157b58384e48b39.zip |
Merge pull request #106 from justintoo/add-package-doxygen
(Package) Add Doxygen (v1.8.10)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/doxygen/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/packages/doxygen/package.py b/var/spack/packages/doxygen/package.py new file mode 100644 index 0000000000..3d4a4e47a7 --- /dev/null +++ b/var/spack/packages/doxygen/package.py @@ -0,0 +1,25 @@ +#------------------------------------------------------------------------------ +# Author: Justin Too <justin@doubleotoo.com> +# Date: September 11, 2015 +#------------------------------------------------------------------------------ + +from spack import * + +class Doxygen(Package): + """Doxygen is the de facto standard tool for generating documentation + from annotated C++ sources, but it also supports other popular programming + languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba, + Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some extent D.. + """ + homepage = "http://www.stack.nl/~dimitri/doxygen/" + url = "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.10.src.tar.gz" + + version('1.8.10', '79767ccd986f12a0f949015efb5f058f') + + depends_on("cmake@2.8.12:") + + def install(self, spec, prefix): + cmake('.', *std_cmake_args) + + make() + make("install") |