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

4 years ago
package("libplist")
set_homepage("https://www.libimobiledevice.org/")
set_description("Library for Apple Binary- and XML-Property Lists")
set_license("LGPL-2.1")
set_urls("https://github.com/libimobiledevice/libplist/archive/$(version).tar.gz",
"https://github.com/libimobiledevice/libplist.git")
add_versions("2.2.0", "7e654bdd5d8b96f03240227ed09057377f06ebad08e1c37d0cfa2abe6ba0cee2")
add_deps("autoconf", "automake", "libtool", "pkg-config")
if is_plat("linux") then
add_syslinks("pthread")
end
on_install("macosx", "linux", "mingw@macosx", "iphoneos", "cross", function (package)
4 years ago
local configs = {"--disable-dependency-tracking",
"--disable-silent-rules",
"--without-cython"}
3 years ago
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
4 years ago
local cxflags
4 years ago
if package:is_plat("linux") and package:config("pic") ~= false then
4 years ago
cxflags = "-fPIC"
end
io.replace("src/plist.c", "void thread_once", "static void thread_once")
4 years ago
import("package.tools.autoconf").install(package, configs, {cxflags = cxflags})
4 years ago
end)
on_test(function (package)
assert(package:has_cfuncs("plist_new_dict", {includes = "plist/plist.h"}))
end)