2014-10-25 21:25:25 -06:00
|
|
|
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')
|
2015-12-16 09:32:48 +01:00
|
|
|
depends_on('libxml2')
|
2014-10-25 21:25:25 -06:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
2015-12-16 09:32:48 +01:00
|
|
|
configure("--prefix=%s" % prefix, "--enable-libxml2")
|
2014-10-25 21:25:25 -06:00
|
|
|
|
|
|
|
make()
|
|
|
|
make("install")
|