diff options
author | Kevin Brandstatter <kjbrandstatter@gmail.com> | 2015-02-26 14:42:12 -0600 |
---|---|---|
committer | Kevin Brandstatter <kjbrandstatter@gmail.com> | 2015-02-26 14:42:12 -0600 |
commit | 2f2eab0e157b7ebced80772d9bc81b205d69d620 (patch) | |
tree | 2e7fc63859631b84f68aeeb14d8414a5ecb01f9c /var/spack/packages/py-libxml2/package.py | |
parent | bbfc519ee5631efa4224d852d9c63446a60a8c07 (diff) | |
parent | ffdb90f39a56e5f0dacefd19ccf85ddd0e7a01c0 (diff) | |
download | spack-2f2eab0e157b7ebced80772d9bc81b205d69d620.tar.gz spack-2f2eab0e157b7ebced80772d9bc81b205d69d620.tar.bz2 spack-2f2eab0e157b7ebced80772d9bc81b205d69d620.tar.xz spack-2f2eab0e157b7ebced80772d9bc81b205d69d620.zip |
Merge branch 'develop' of github.com:kev40293/spack into develop
Diffstat (limited to 'var/spack/packages/py-libxml2/package.py')
-rw-r--r-- | var/spack/packages/py-libxml2/package.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/packages/py-libxml2/package.py b/var/spack/packages/py-libxml2/package.py new file mode 100644 index 0000000000..59005428e4 --- /dev/null +++ b/var/spack/packages/py-libxml2/package.py @@ -0,0 +1,15 @@ +from spack import * + +class PyLibxml2(Package): + """A Python wrapper around libxml2.""" + homepage = "https://xmlsoft.org/python.html" + url = "ftp://xmlsoft.org/libxml2/python/libxml2-python-2.6.21.tar.gz" + + version('2.6.21', '229dd2b3d110a77defeeaa73af83f7f3') + + extends('python') + depends_on('libxml2') + depends_on('libxslt') + + def install(self, spec, prefix): + python('setup.py', 'install', '--prefix=%s' % prefix) |