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.
 
 
 

34 lines
1.4 KiB

package("libxdmcp")
set_homepage("https://www.x.org/")
set_description("X.Org: X Display Manager Control Protocol library")
set_urls("https://www.x.org/archive/individual/lib/libXdmcp-$(version).tar.gz")
add_versions("1.1.3", "2ef9653d32e09d1bf1b837d0e0311024979653fe755ad3aaada8db1aa6ea180c")
add_versions("1.1.4", "55041a8ff8992ab02777478c4b19c249c0f8399f05a752cb4a1a868a9a0ccb9a")
if is_plat("linux") then
add_extsources("apt::libxdmcp-dev", "pacman::libxmdcp")
end
if is_plat("macosx", "linux") then
add_deps("pkg-config", "xorgproto")
end
on_install("macosx", "linux", function (package)
local configs = {"--sysconfdir=" .. package:installdir("etc"),
"--localstatedir=" .. package:installdir("var"),
"--disable-dependency-tracking",
"--disable-silent-rules",
"--enable-docs=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("xdmOpCode", {includes = "X11/Xdmcp.h"}))
end)