package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.9 KiB

6 years ago
package("fontconfig")
set_homepage("https://www.freedesktop.org/wiki/Software/fontconfig/")
set_description("A library for configuring and customizing font access.")
set_urls("https://www.freedesktop.org/software/fontconfig/release/fontconfig-$(version).tar.gz")
add_versions("2.13.1", "9f0d852b39d75fc655f9f53850eb32555394f36104a044bb2b2fc9e66dbbfa7f")
add_deps("pkg-config", "freetype >= 2.9", "expat")
if is_plat("macosx") then
add_deps("gettext")
else
add_deps("autoconf", "automake", "libtool", "gperf", "bzip2")
add_deps("util-linux", {configs = {libuuid = true}})
6 years ago
end
-- fix the build issue with --enable-static
add_patches("2.13.1", "https://gitlab.freedesktop.org/fontconfig/fontconfig/commit/8208f99fa1676c42bfd8d74de3e9dac5366c150c.diff",
"2abdff214b99f2d074170e6512b0149cc858ea26cd930690aa6b4ccea2c549ef")
6 years ago
on_install("linux", "macosx", function (package)
import("package.tools.autoconf")
local font_dirs = {}
if is_plat("macosx") then
table.insert(font_dirs, "/System/Library/Fonts")
table.insert(font_dirs, "/Library/Fonts")
table.insert(font_dirs, "~/Library/Fonts")
end
6 years ago
local configs = {"--disable-dependency-tracking", "--disable-silent-rules", "--enable-static", "--disable-docs"}
if #font_dirs > 0 then
table.insert(configs, "--with-add-fonts=" .. table.concat(font_dirs, ','))
end
local envs = autoconf.buildenvs(package)
if package:is_plat("linux") then
envs.UUID_CFLAGS = "-I" .. package:dep("util-linux"):installdir("include")
end
table.insert(configs, "--enable-shared=no")
autoconf.install(package, configs, {envs = envs})
6 years ago
end)
on_test(function (package)
assert(package:has_cfuncs("FcInitLoadConfigAndFonts", {includes = "fontconfig/fontconfig.h"}))
end)