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:
Justin M Wozniak
2017-02-17 13:35:45 -06:00
committed by Todd Gamblin
parent c2fa7b1254
commit 163bdfde93
4 changed files with 56 additions and 12 deletions

View File

@@ -29,13 +29,13 @@
class Adlbx(AutotoolsPackage):
"""ADLB/X: Master-worker library + work stealing and data dependencies"""
homepage = "http://swift-lang.org/Swift-T"
url = "http://swift-lang.github.io/swift-t-downloads/adlbx-0.8.0.tar.gz"
homepage = 'http://swift-lang.org/Swift-T'
url = 'http://swift-lang.github.io/swift-t-downloads/adlbx-0.8.0.tar.gz'
version('0.8.0', '34ade59ce3be5bc296955231d47a27dd')
depends_on('exmcutils')
depends_on('mpi')
def configure_args(self):
args = ["--with-c-utils=" + self.spec['exmcutils'].prefix]
args = ['--with-c-utils=' + self.spec['exmcutils'].prefix]
return args