diff options
author | Justin Too <justin@doubleotoo.com> | 2015-09-11 20:27:09 +0000 |
---|---|---|
committer | Ubuntu <ubuntu@ip-172-31-8-96.us-west-1.compute.internal> | 2015-09-11 20:29:18 +0000 |
commit | 99ca0f31531059037a6508aab8ecc62d080f8ce5 (patch) | |
tree | 9028ae08240d2061b1039508885515db5034df96 /var | |
parent | c5c9ada7b0efd9cec5cf55c4cf71d76b186513ff (diff) | |
download | spack-99ca0f31531059037a6508aab8ecc62d080f8ce5.tar.gz spack-99ca0f31531059037a6508aab8ecc62d080f8ce5.tar.bz2 spack-99ca0f31531059037a6508aab8ecc62d080f8ce5.tar.xz spack-99ca0f31531059037a6508aab8ecc62d080f8ce5.zip |
(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") |