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.
35 lines
1.3 KiB
35 lines
1.3 KiB
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", "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 |
|
local cxflags |
|
if package:is_plat("linux") and not package:config("shared") then |
|
cxflags = "-fPIC" |
|
end |
|
import("package.tools.autoconf").install(package, configs, {cxflags = cxflags}) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("plist_new_dict", {includes = "plist/plist.h"})) |
|
end)
|
|
|