summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Zagaris <george.zagaris@gmail.com>2016-05-12 21:30:11 -0700
committerGeorge Zagaris <george.zagaris@gmail.com>2016-05-12 23:25:10 -0700
commite763eeacdde4bd63d5beb1fee0ca6eb8593a0884 (patch)
treec555910a5a63ebaeb4354389f73d8504231a380c /var
parent3ece0e7b761755c38f76615fcbd38470940eba61 (diff)
downloadspack-e763eeacdde4bd63d5beb1fee0ca6eb8593a0884.tar.gz
spack-e763eeacdde4bd63d5beb1fee0ca6eb8593a0884.tar.bz2
spack-e763eeacdde4bd63d5beb1fee0ca6eb8593a0884.tar.xz
spack-e763eeacdde4bd63d5beb1fee0ca6eb8593a0884.zip
fix format in doxygen/package.py
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/doxygen/package.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/doxygen/package.py b/var/spack/repos/builtin/packages/doxygen/package.py
index 26c6b3899d..b8f15dee14 100644
--- a/var/spack/repos/builtin/packages/doxygen/package.py
+++ b/var/spack/repos/builtin/packages/doxygen/package.py
@@ -22,20 +22,21 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
-#------------------------------------------------------------------------------
+
# Author: Justin Too <justin@doubleotoo.com>
# Date: September 11, 2015
-#------------------------------------------------------------------------------
from spack import *
import sys
+
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..
- """
+ 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"
@@ -47,7 +48,6 @@ class Doxygen(Package):
depends_on("flex", sys.platform != 'darwin')
depends_on("bison", sys.platform != 'darwin')
-
def install(self, spec, prefix):
cmake('.', *std_cmake_args)