|
@@ -0,0 +1,27 @@
|
|
|
+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)
|