summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fontconfig/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/fontconfig/package.py')
-rw-r--r--var/spack/repos/builtin/packages/fontconfig/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fontconfig/package.py b/var/spack/repos/builtin/packages/fontconfig/package.py
new file mode 100644
index 0000000000..517c9d1813
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fontconfig/package.py
@@ -0,0 +1,17 @@
+from spack import *
+
+class Fontconfig(Package):
+ """Fontconfig customizing font access"""
+ homepage = "http://www.freedesktop.org/wiki/Software/fontconfig/"
+ url = "http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.gz"
+
+ version('2.11.1' , 'e75e303b4f7756c2b16203a57ac87eba')
+
+ depends_on('freetype')
+ depends_on('libxml2')
+
+ def install(self, spec, prefix):
+ configure("--prefix=%s" % prefix, "--enable-libxml2")
+
+ make()
+ make("install")