diff options
author | Saravan Pantham <saravan.pantham@gmail.com> | 2015-05-27 17:42:18 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-06-06 15:26:42 -0700 |
commit | 9d71093500eae5913d2cebc78008506bcf31adc1 (patch) | |
tree | 25d50b83e3787340ed741cd8ec6107c9de5254a2 /var | |
parent | fd34f4b119243d42b64e4ca2c358cf561fde9a14 (diff) | |
download | spack-9d71093500eae5913d2cebc78008506bcf31adc1.tar.gz spack-9d71093500eae5913d2cebc78008506bcf31adc1.tar.bz2 spack-9d71093500eae5913d2cebc78008506bcf31adc1.tar.xz spack-9d71093500eae5913d2cebc78008506bcf31adc1.zip |
Updated Zoltan.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/zoltan_distrib/package.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/var/spack/packages/zoltan_distrib/package.py b/var/spack/packages/zoltan_distrib/package.py deleted file mode 100644 index 85f32f0a2d..0000000000 --- a/var/spack/packages/zoltan_distrib/package.py +++ /dev/null @@ -1,33 +0,0 @@ -# FIXME: -# This is a template package file for Spack. We've conveniently -# put "FIXME" labels next to all the things you'll want to change. -# -# Once you've edited all the FIXME's, delete this whole message, -# save this file, and test out your package like this: -# -# spack install zoltan_distrib -# -# You can always get back here to change things with: -# -# spack edit zoltan_distrib -# -# See the spack documentation for more information on building -# packages. -# -from spack import * - -class ZoltanDistrib(Package): - """FIXME: put a proper description of your package here.""" - - homepage = "http://www.example.com" - url = "http://www.cs.sandia.gov/~kddevin/Zoltan_Distributions/zoltan_distrib_v3.81.tar.gz" - - version('3.81', 'e0587ac69dbc3b17d28f515ed0933719') - - def install(self, spec, prefix): - # FIXME: Modify the configure line to suit your build system here. - configure("--prefix=%s" % prefix) - - # FIXME: Add logic to build and install here - make() - make("install") |