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.
31 lines
1.3 KiB
31 lines
1.3 KiB
package("xtrans") |
|
|
|
set_homepage("https://www.x.org/") |
|
set_description("X.Org: X Network Transport layer shared code") |
|
|
|
set_urls("https://www.x.org/archive/individual/lib/xtrans-$(version).tar.gz") |
|
add_versions("1.4.0", "48ed850ce772fef1b44ca23639b0a57e38884045ed2cbb18ab137ef33ec713f9") |
|
-- add_versions("1.5.0", "a806f8a92f879dcd0146f3f1153fdffe845f2fc0df9b1a26c19312b7b0a29c86") |
|
|
|
if is_plat("linux") then |
|
add_extsources("apt::xtrans-dev", "pacman::xtrans") |
|
end |
|
|
|
if is_plat("macosx", "linux") then |
|
add_deps("pkg-config", "util-macros", "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"} |
|
-- fedora systems do not provide sys/stropts.h |
|
io.replace("Xtranslcl.c", "# include <sys/stropts.h>", "# include <sys/ioctl.h>") |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_ctypes("Xtransaddr", {includes = "X11/Xtrans/Xtrans.h"})) |
|
end)
|
|
|