summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-04-26 15:49:48 -0500
committerGitHub <noreply@github.com>2017-04-26 15:49:48 -0500
commit2c1e5f9ee15f577028951f6fdd61381bf28e0356 (patch)
treea3e1848145272d348deefeb3845ef286893dc5ae /var
parent348e715da7dfab1964d18b5b999a99febe8d5414 (diff)
downloadspack-2c1e5f9ee15f577028951f6fdd61381bf28e0356.tar.gz
spack-2c1e5f9ee15f577028951f6fdd61381bf28e0356.tar.bz2
spack-2c1e5f9ee15f577028951f6fdd61381bf28e0356.tar.xz
spack-2c1e5f9ee15f577028951f6fdd61381bf28e0356.zip
Add latest version of fontconfig (#4007)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/fontconfig/package.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/fontconfig/package.py b/var/spack/repos/builtin/packages/fontconfig/package.py
index ec486bac61..32d72deae3 100644
--- a/var/spack/repos/builtin/packages/fontconfig/package.py
+++ b/var/spack/repos/builtin/packages/fontconfig/package.py
@@ -28,8 +28,9 @@ from spack import *
class Fontconfig(AutotoolsPackage):
"""Fontconfig is a library for configuring/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"
+ url = "http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.12.1.tar.gz"
+ version('2.12.1', 'ce55e525c37147eee14cc2de6cc09f6c')
version('2.11.1', 'e75e303b4f7756c2b16203a57ac87eba')
depends_on('freetype')
@@ -40,10 +41,11 @@ class Fontconfig(AutotoolsPackage):
def configure_args(self):
font_path = join_path(self.spec['font-util'].prefix, 'share', 'fonts')
- return ["--prefix={0}".format(self.prefix),
- "--enable-libxml2",
- "--disable-docs",
- "--with-default-fonts={0}".format(font_path)]
+ return [
+ '--enable-libxml2',
+ '--disable-docs',
+ '--with-default-fonts={0}'.format(font_path)
+ ]
@run_after('install')
def system_fonts(self):