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.
25 lines
1.3 KiB
25 lines
1.3 KiB
package("libimobiledevice") |
|
|
|
set_homepage("https://github.com/libimobiledevice/libimobiledevice") |
|
set_description("A cross-platform protocol library to communicate with iOS devices") |
|
|
|
add_urls("https://github.com/libimobiledevice/libimobiledevice/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/libimobiledevice/libimobiledevice.git") |
|
add_versions("1.3.0", "acbfb73eabee162e64c0d9de207d71c0a5f47c40cd5ad32a5097f734328ce10a") |
|
|
|
add_deps("libplist", "libusbmuxd", "openssl", "libimobiledevice-glue") |
|
on_install("macosx", "linux", function (package) |
|
io.replace("tools/Makefile.am", "bin_PROGRAMS = \\", "bin_PROGRAMS =") |
|
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("idevice_event_subscribe", {includes = "libimobiledevice/libimobiledevice.h"})) |
|
end)
|
|
|