summaryrefslogtreecommitdiff
path: root/var/spack/packages/libxml2/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-12-25 16:09:42 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2014-12-25 16:09:42 -0800
commitd98e475361acdadb3b734fd2dbf97ec603f9b7e8 (patch)
tree52f8c437737407090b2c397b9ca75102c2ada9fe /var/spack/packages/libxml2/package.py
parent20388ece86c91c7f2db112b6da38cfb2b8853196 (diff)
downloadspack-d98e475361acdadb3b734fd2dbf97ec603f9b7e8.tar.gz
spack-d98e475361acdadb3b734fd2dbf97ec603f9b7e8.tar.bz2
spack-d98e475361acdadb3b734fd2dbf97ec603f9b7e8.tar.xz
spack-d98e475361acdadb3b734fd2dbf97ec603f9b7e8.zip
Qt4 builds successfully with proper RPATHs.
Diffstat (limited to 'var/spack/packages/libxml2/package.py')
-rw-r--r--var/spack/packages/libxml2/package.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/packages/libxml2/package.py b/var/spack/packages/libxml2/package.py
new file mode 100644
index 0000000000..5eaed36d94
--- /dev/null
+++ b/var/spack/packages/libxml2/package.py
@@ -0,0 +1,16 @@
+from spack import *
+
+class Libxml2(Package):
+ """Libxml2 is the XML C parser and toolkit developed for the Gnome
+ project (but usable outside of the Gnome platform), it is free
+ software available under the MIT License."""
+ homepage = "http://xmlsoft.org"
+ url = "http://xmlsoft.org/sources/libxml2-2.9.2.tar.gz"
+
+ version('2.9.2', '9e6a9aca9d155737868b3dc5fd82f788')
+
+ def install(self, spec, prefix):
+ configure("--prefix=%s" % prefix,
+ "--without-python")
+ make()
+ make("install")