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.1 KiB
28 lines
1.1 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")
|
||
|
|
||
|
on_install("macosx", "linux", "windows", "mingw", "iphoneos", "cross", function (package)
|
||
|
local configs = {"--disable-dependency-tracking",
|
||
|
"--disable-silent-rules",
|
||
|
"--without-cython"}
|
||
|
if package:config("shared") then
|
||
|
table.insert(configs, "--enable-shared=yes")
|
||
|
else
|
||
|
table.insert(configs, "--enable-shared=no")
|
||
|
end
|
||
|
import("package.tools.autoconf").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("plist_new_dict", {includes = "plist/plist.h"}))
|
||
|
end)
|