Skip to content
Snippets Groups Projects
Commit e763eeac authored by George Zagaris's avatar George Zagaris
Browse files

fix format in doxygen/package.py

parent 3ece0e7b
No related branches found
No related tags found
No related merge requests found
...@@ -22,20 +22,21 @@ ...@@ -22,20 +22,21 @@
# License along with this program; if not, write to the Free Software # License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
############################################################################## ##############################################################################
#------------------------------------------------------------------------------
# Author: Justin Too <justin@doubleotoo.com> # Author: Justin Too <justin@doubleotoo.com>
# Date: September 11, 2015 # Date: September 11, 2015
#------------------------------------------------------------------------------
from spack import * from spack import *
import sys import sys
class Doxygen(Package): class Doxygen(Package):
"""Doxygen is the de facto standard tool for generating documentation """Doxygen is the de facto standard tool for generating documentation
from annotated C++ sources, but it also supports other popular programming from annotated C++ sources, but it also supports other popular programming
languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba, 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/" homepage = "http://www.stack.nl/~dimitri/doxygen/"
url = "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.10.src.tar.gz" url = "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.10.src.tar.gz"
...@@ -47,7 +48,6 @@ class Doxygen(Package): ...@@ -47,7 +48,6 @@ class Doxygen(Package):
depends_on("flex", sys.platform != 'darwin') depends_on("flex", sys.platform != 'darwin')
depends_on("bison", sys.platform != 'darwin') depends_on("bison", sys.platform != 'darwin')
def install(self, spec, prefix): def install(self, spec, prefix):
cmake('.', *std_cmake_args) cmake('.', *std_cmake_args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment