spack/var/spack/repos/builtin/packages/doxygen/package.py

57 lines
2.2 KiB
Python
Raw Normal View History

##############################################################################
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/llnl/spack
# Please also see the LICENSE file for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License (as
# published by the Free Software Foundation) version 2.1, February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
2015-09-12 04:27:09 +08:00
from spack import *
2016-03-30 17:59:13 +08:00
import sys
2015-09-12 04:27:09 +08:00
2016-05-13 12:30:11 +08:00
2015-09-12 04:27:09 +08:00
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,
2016-05-13 12:30:11 +08:00
Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some
extent D.."""
2015-09-12 04:27:09 +08:00
homepage = "http://www.stack.nl/~dimitri/doxygen/"
url = "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.10.src.tar.gz"
2016-05-12 15:42:22 +08:00
version('1.8.11', 'f4697a444feaed739cfa2f0644abc19b')
2015-09-12 04:27:09 +08:00
version('1.8.10', '79767ccd986f12a0f949015efb5f058f')
# graphviz appears to be a run-time optional dependency
variant('graphviz', default=True, description='Build with dot command support from Graphviz.')
2015-09-12 04:27:09 +08:00
depends_on("cmake@2.8.12:")
depends_on("flex")
depends_on("bison")
#optional dependencies
depends_on("graphviz", when="+graphviz")
2016-03-30 17:59:13 +08:00
2015-09-12 04:27:09 +08:00
def install(self, spec, prefix):
cmake('.', *std_cmake_args)
make()
make("install")