diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-12-31 15:40:03 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-12-31 15:40:03 -0800 |
commit | 48ebb25c25b9d252f4197066b00a7f2e1332a080 (patch) | |
tree | 92ca49b6071591992305c596b7b4c263a0fd3fde | |
parent | 7062b216b84ec48cc441cf11bd216dea9ae2f111 (diff) | |
parent | 60ec79eac3f185f6389166ff801a767c66c7470e (diff) | |
download | spack-48ebb25c25b9d252f4197066b00a7f2e1332a080.tar.gz spack-48ebb25c25b9d252f4197066b00a7f2e1332a080.tar.bz2 spack-48ebb25c25b9d252f4197066b00a7f2e1332a080.tar.xz spack-48ebb25c25b9d252f4197066b00a7f2e1332a080.zip |
Merge pull request #271 from eschnett/eschnett/pcre2
New package PCRE2
-rw-r--r-- | var/spack/packages/pcre2/package.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/packages/pcre2/package.py b/var/spack/packages/pcre2/package.py new file mode 100644 index 0000000000..6a0244a15e --- /dev/null +++ b/var/spack/packages/pcre2/package.py @@ -0,0 +1,15 @@ +from spack import * + +class Pcre2(Package): + """The PCRE2 package contains Perl Compatible Regular Expression + libraries. These are useful for implementing regular expression + pattern matching using the same syntax and semantics as Perl 5.""" + homepage = "http://www.pcre.org""" + url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2" + + version('10.20', 'dcd027c57ecfdc8a6c3af9d0acf5e3f7') + + def install(self, spec, prefix): + configure("--prefix=%s" % prefix) + make() + make("install") |