Swift/T: all packages (#3130)
* New package.py for ExM C-Utils: An initial package dependency for Swift/T * New package.py for ADLB/X: A 2nd package dependency for Swift/T * New package.py for Turbine * New package.py for STC
This commit is contained in:

committed by
Todd Gamblin

parent
c2fa7b1254
commit
163bdfde93
@@ -27,19 +27,20 @@
|
||||
|
||||
|
||||
class Turbine(AutotoolsPackage):
|
||||
"""Turbine: The Swift/T runtime"""
|
||||
|
||||
homepage = "http://swift-lang.org/Swift-T"
|
||||
url = "http://swift-lang.github.io/swift-t-downloads/turbine-1.0.0.tar.gz"
|
||||
homepage = 'http://swift-lang.org/Swift-T'
|
||||
url = 'http://swift-lang.github.io/swift-t-downloads/turbine-1.0.0.tar.gz'
|
||||
|
||||
version('1.0.0', '7ed56d65d6db0bfe15a439d818b4259e')
|
||||
|
||||
depends_on('adlbx')
|
||||
depends_on('tcl')
|
||||
depends_on('zsh')
|
||||
depends_on('zsh', type='run')
|
||||
|
||||
def configure_args(self):
|
||||
args = ["--with-c-utils=" + self.spec['exmcutils'].prefix,
|
||||
"--with-adlb=" + self.spec['adlbx'].prefix,
|
||||
"--with-tcl=" + self.spec['tcl'].prefix,
|
||||
"--with-mpi=" + self.spec['mpi'].prefix]
|
||||
args = ['--with-c-utils=' + self.spec['exmcutils'].prefix,
|
||||
'--with-adlb=' + self.spec['adlbx'].prefix,
|
||||
'--with-tcl=' + self.spec['tcl'].prefix,
|
||||
'--with-mpi=' + self.spec['mpi'].prefix]
|
||||
return args
|
||||
|
Reference in New Issue
Block a user