123456789101112131415161718192021222324252627282930313233 |
- package("libxrender")
- set_homepage("https://www.x.org/")
- set_description("X.Org: Library for the Render Extension to the X11 protocol")
- set_urls("https://www.x.org/archive/individual/lib/libXrender-$(version).tar.gz")
- add_versions("0.9.11", "6aec3ca02e4273a8cbabf811ff22106f641438eb194a12c0ae93c7e08474b667")
- add_versions("0.9.12", "0fff64125819c02d1102b6236f3d7d861a07b5216d8eea336c3811d31494ecf7")
- if is_plat("linux") then
- add_extsources("apt::libxrender-dev")
- end
- if is_plat("macosx", "linux") then
- add_deps("pkg-config", "libx11", "xorgproto")
- end
- on_install("macosx", "linux", function (package)
- local configs = {"--sysconfdir=" .. package:installdir("etc"),
- "--localstatedir=" .. package:installdir("var"),
- "--disable-dependency-tracking",
- "--disable-silent-rules"}
- table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
- table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
- if package:config("pic") then
- table.insert(configs, "--with-pic")
- end
- import("package.tools.autoconf").install(package, configs)
- end)
- on_test(function (package)
- assert(package:has_ctypes("XRenderColor", {includes = "X11/extensions/Xrender.h"}))
- end)
|