123456789101112131415161718192021222324252627282930313233 |
- package("libxext")
- set_homepage("https://www.x.org/")
- set_description("X.Org: Library for common extensions to the X11 protocol")
- set_urls("https://www.x.org/archive/individual/lib/libXext-$(version).tar.gz")
- add_versions("1.3.5", "1a3dcda154f803be0285b46c9338515804b874b5ccc7a2b769ab7fd76f1035bd")
- add_versions("1.3.6", "1a0ac5cd792a55d5d465ced8dbf403ed016c8e6d14380c0ea3646c4415496e3d")
- if is_plat("linux") then
- add_extsources("apt::libxext-dev")
- end
- if is_plat("macosx", "linux", "bsd") then
- add_deps("pkg-config", "libx11", "xorgproto")
- end
- on_install("macosx", "linux", "bsd", function (package)
- local configs = {"--sysconfdir=" .. package:installdir("etc"),
- "--localstatedir=" .. package:installdir("var"),
- "--disable-dependency-tracking",
- "--disable-silent-rules",
- "--enable-specs=no"}
- 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("XShapeEvent", {includes = "X11/extensions/shape.h"}))
- end)
|