76 lines
2.6 KiB
Ruby
76 lines
2.6 KiB
Ruby
class Fontconfig < Formula
|
|
desc "XML-based font configuration API for X Windows"
|
|
homepage "https://wiki.freedesktop.org/www/Software/fontconfig/"
|
|
url "https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.13.0.tar.bz2"
|
|
sha256 "91dde8492155b7f34bb95079e79be92f1df353fcc682c19be90762fd3e12eeb9"
|
|
|
|
# The bottle tooling is too lenient and thinks fontconfig
|
|
# is relocatable, but it has hardcoded paths in the executables.
|
|
bottle do
|
|
sha256 "eef398cce05ebad163bb284041d3acf5ae3ec9732e2503f0109d299258b96b09" => :mojave
|
|
sha256 "66ad096a51d6253be02b4d3df0299d422c8bd1bccf571ed64a8b8b21a2e77bc7" => :high_sierra
|
|
sha256 "d822bc26c6b556606087e5807293492814fedf9d408c857006b0886608010400" => :sierra
|
|
sha256 "a8016f2aff75677bab388a0ab138b4528d787c44c337f6ee7236e0de4a1cb268" => :el_capitan
|
|
end
|
|
|
|
pour_bottle? do
|
|
reason "The bottle needs to be installed into /usr/local."
|
|
# c.f. the identical hack in lua
|
|
# https://github.com/Homebrew/homebrew/issues/47173
|
|
satisfy { HOMEBREW_PREFIX.to_s == "/usr/local" }
|
|
end
|
|
|
|
head do
|
|
url "https://anongit.freedesktop.org/git/fontconfig", :using => :git
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freetype"
|
|
|
|
def install
|
|
# Remove for > 2.13.0
|
|
# Upstream issue from 6 Mar 2018 "2.13.0 erroneously requires libuuid on macOS"
|
|
# See https://bugs.freedesktop.org/show_bug.cgi?id=105366
|
|
ENV["UUID_CFLAGS"] = " "
|
|
ENV["UUID_LIBS"] = " "
|
|
|
|
# Remove for > 2.13.0
|
|
# Same effect as upstream commit from 10 Mar 2018 "Add uuid to
|
|
# Requires.private in .pc only when pkgconfig macro found it"
|
|
inreplace "configure",
|
|
'PKGCONFIG_REQUIRES_PRIVATELY="$PKGCONFIG_REQUIRES_PRIVATELY uuid"', ""
|
|
|
|
font_dirs = %w[
|
|
/System/Library/Fonts
|
|
/Library/Fonts
|
|
~/Library/Fonts
|
|
]
|
|
|
|
if MacOS.version >= :sierra
|
|
font_dirs << Dir["/System/Library/Assets/com_apple_MobileAsset_Font*"].max
|
|
end
|
|
|
|
system "autoreconf", "-iv" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--enable-static",
|
|
"--with-add-fonts=#{font_dirs.join(",")}",
|
|
"--prefix=#{prefix}",
|
|
"--localstatedir=#{var}",
|
|
"--sysconfdir=#{etc}"
|
|
system "make", "install", "RUN_FC_CACHE_TEST=false"
|
|
end
|
|
|
|
def post_install
|
|
ohai "Regenerating font cache, this may take a while"
|
|
system "#{bin}/fc-cache", "-frv"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/fc-list"
|
|
end
|
|
end
|