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.
28 lines
1.2 KiB
28 lines
1.2 KiB
package("libimobiledevice-glue") |
|
|
|
set_homepage("https://github.com/libimobiledevice/libimobiledevice-glue") |
|
set_description("A library with common code used by libraries and tools around the libimobiledevice project") |
|
|
|
add_urls("https://github.com/libimobiledevice/libimobiledevice-glue.git") |
|
add_versions("2021.11.24", "106cea58ae2d92fc755705a79e1753b3750edd15") |
|
|
|
add_deps("autoconf", "automake", "libplist") |
|
|
|
if is_plat("windows", "mingw") then |
|
add_syslinks("ws2_32", "iphlpapi") |
|
end |
|
|
|
on_install("macosx", "linux", "mingw@macosx", function (package) |
|
local configs = {} |
|
if package:is_plat("linux") and package:config("pic") ~= false then |
|
table.insert(configs, "--with-pic") |
|
end |
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no")) |
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes")) |
|
table.insert(configs, "--enable-debug=" .. (package:config("debug") and "yes" or "no")) |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("socket_connect", {includes = "libimobiledevice-glue/socket.h"})) |
|
end)
|
|
|