2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-16 15:56:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-16 15:56:53 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2020-04-15 11:54:16 +08:00
|
|
|
class Libxft(AutotoolsPackage, XorgPackage):
|
2016-10-12 00:42:20 +08:00
|
|
|
"""X FreeType library.
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
Xft version 2.1 was the first stand alone release of Xft, a library that
|
|
|
|
connects X applications with the FreeType font rasterization library. Xft
|
|
|
|
uses fontconfig to locate fonts so it has no configuration files."""
|
2016-06-16 15:56:53 +08:00
|
|
|
|
2016-10-12 00:42:20 +08:00
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/lib/libXft"
|
2020-04-15 11:54:16 +08:00
|
|
|
xorg_mirror_path = "lib/libXft-2.3.2.tar.gz"
|
2016-10-12 00:42:20 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.3.2', sha256='26cdddcc70b187833cbe9dc54df1864ba4c03a7175b2ca9276de9f05dce74507')
|
2016-10-12 00:42:20 +08:00
|
|
|
|
|
|
|
depends_on('freetype@2.1.6:')
|
|
|
|
depends_on('fontconfig@2.5.92:')
|
|
|
|
depends_on('libx11')
|
|
|
|
depends_on('libxrender@0.8.2:')
|
|
|
|
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2016-10-12 00:42:20 +08:00
|
|
|
depends_on('util-macros', type='build')
|