parent
68110066e9
commit
a47c7f9f53
6 changed files with 50 additions and 8 deletions
@ -0,0 +1,24 @@ |
||||
package("libxft") |
||||
|
||||
set_homepage("https://www.x.org/") |
||||
set_description("X.Org: X FreeType library") |
||||
set_license("MIT") |
||||
|
||||
set_urls("https://www.x.org/archive/individual/lib/libXft-$(version).tar.bz2") |
||||
add_versions("2.3.3", "225c68e616dd29dbb27809e45e9eadf18e4d74c50be43020ef20015274529216") |
||||
|
||||
if is_plat("macosx", "linux") then |
||||
add_deps("pkg-config", "fontconfig", "libxrender") |
||||
end |
||||
|
||||
on_install("macosx", "linux", function (package) |
||||
local configs = {"--sysconfdir=" .. package:installdir("etc"), |
||||
"--localstatedir=" .. package:installdir("var"), |
||||
"--disable-dependency-tracking", |
||||
"--disable-silent-rules"} |
||||
import("package.tools.autoconf").install(package, configs) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:has_ctypes("XftFont", {includes = "X11/Xft/Xft.h"})) |
||||
end) |
Loading…
Reference in new issue