diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 00:30:37 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 00:30:37 -0700 |
commit | 46cf0a23d9c036e7236d118c728ee3cc04717e8d (patch) | |
tree | 71d551e6bc0d972761f6f259a7f4f99b8c925aa5 | |
parent | f02af701e519005cb32461b10282b4234bb806b1 (diff) | |
parent | b5d7cd55ce197bf4e6d476996ab874083efb86a2 (diff) | |
download | spack-46cf0a23d9c036e7236d118c728ee3cc04717e8d.tar.gz spack-46cf0a23d9c036e7236d118c728ee3cc04717e8d.tar.bz2 spack-46cf0a23d9c036e7236d118c728ee3cc04717e8d.tar.xz spack-46cf0a23d9c036e7236d118c728ee3cc04717e8d.zip |
Merge pull request #112 from scalability-llnl/features/glog
add glog package
-rw-r--r-- | var/spack/packages/glog/package.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/packages/glog/package.py b/var/spack/packages/glog/package.py new file mode 100644 index 0000000000..d73386b394 --- /dev/null +++ b/var/spack/packages/glog/package.py @@ -0,0 +1,15 @@ +import os +from spack import * + +class Glog(Package): + """C++ implementation of the Google logging module.""" + + homepage = "https://github.com/google/glog" + url = "https://github.com/google/glog/archive/v0.3.3.tar.gz" + + version('0.3.3', 'c1f86af27bd9c73186730aa957607ed0') + + def install(self, spec, prefix): + configure("--prefix=" + prefix) + make() + make("install") |