New package: ecFlow, a work flow manager. (#9867)
* New package: ecFlow, a work flow manager. * Fix pep8 style issues.
This commit is contained in:
parent
c45080398c
commit
c61250e2ef
30
var/spack/repos/builtin/packages/ecflow/package.py
Normal file
30
var/spack/repos/builtin/packages/ecflow/package.py
Normal file
@ -0,0 +1,30 @@
|
||||
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Ecflow(CMakePackage):
|
||||
'''ecFlow is a work flow package that enables users to run a large number
|
||||
of programs (with dependencies on each other and on time) in a controlled
|
||||
environment.
|
||||
|
||||
It provides tolerance for hardware and software failures, combined with
|
||||
good restart capabilities.
|
||||
'''
|
||||
|
||||
homepage = 'https://confluence.ecmwf.int/display/ECFLOW/'
|
||||
url = 'https://confluence.ecmwf.int/download/attachments/8650755/ecFlow-4.11.1-Source.tar.gz'
|
||||
|
||||
version('4.11.1', sha256='b3bcc1255939f87b9ba18d802940e08c0cf6379ca6aeec1fef7bd169b0085d6c')
|
||||
|
||||
depends_on('boost+python+pic')
|
||||
depends_on('qt')
|
||||
depends_on('cmake@2.8.11:', type='build')
|
||||
|
||||
def cmake_args(self):
|
||||
boost_lib = self.spec['boost'].prefix.lib
|
||||
args = ['-DBoost_PYTHON_LIBRARY_RELEASE=' + boost_lib]
|
||||
return args
|
Loading…
Reference in New Issue
Block a user