indentation fixes
This commit is contained in:
parent
459c647bc9
commit
0fbf70d95d
3 changed files with 7 additions and 6 deletions
|
@ -23,7 +23,6 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
import sys
|
||||
|
||||
|
||||
class Doxygen(Package):
|
||||
|
@ -40,13 +39,13 @@ class Doxygen(Package):
|
|||
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.')
|
||||
variant('graphviz', default=True, description='Build with dot command support from Graphviz.') # NOQA: ignore=E501
|
||||
|
||||
depends_on("cmake@2.8.12:")
|
||||
depends_on("flex")
|
||||
depends_on("bison")
|
||||
|
||||
#optional dependencies
|
||||
# optional dependencies
|
||||
depends_on("graphviz", when="+graphviz")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
##############################################################################
|
||||
from spack import *
|
||||
|
||||
|
||||
class Ghostscript(Package):
|
||||
"""an interpreter for the PostScript language and for PDF. """
|
||||
homepage = "http://ghostscript.com/"
|
||||
|
@ -34,7 +35,7 @@ class Ghostscript(Package):
|
|||
parallel = False
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure("--prefix=%s" %prefix, "--enable-shared")
|
||||
configure("--prefix=%s" % prefix, "--enable-shared")
|
||||
|
||||
make()
|
||||
make("install")
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
from spack import *
|
||||
import sys
|
||||
|
||||
|
||||
class Graphviz(Package):
|
||||
"""Graph Visualization Software"""
|
||||
homepage = "http://www.graphviz.org"
|
||||
|
@ -36,7 +37,7 @@ class Graphviz(Package):
|
|||
# related to missing Perl packages. If spack begins support for Perl in the
|
||||
# future, this package can be updated to depend_on('perl') and the
|
||||
# ncecessary devel packages.
|
||||
variant('perl', default=False, description='Enable if you need the optional Perl language bindings.')
|
||||
variant('perl', default=False, description='Enable if you need the optional Perl language bindings.') # NOQA: ignore=E501
|
||||
|
||||
parallel = False
|
||||
|
||||
|
@ -47,7 +48,7 @@ class Graphviz(Package):
|
|||
|
||||
def install(self, spec, prefix):
|
||||
options = ['--prefix=%s' % prefix]
|
||||
if not '+perl' in spec:
|
||||
if '+perl' not in spec:
|
||||
options.append('--disable-perl')
|
||||
|
||||
# On OSX fix the compiler error:
|
||||
|
|
Loading…
Reference in a new issue