|
@@ -2,12 +2,14 @@ package("libxml2")
|
|
|
|
|
|
set_homepage("http://xmlsoft.org/")
|
|
set_homepage("http://xmlsoft.org/")
|
|
set_description("The XML C parser and toolkit of Gnome.")
|
|
set_description("The XML C parser and toolkit of Gnome.")
|
|
|
|
+ set_license("MIT")
|
|
|
|
|
|
set_urls("http://xmlsoft.org/sources/libxml2-$(version).tar.gz",
|
|
set_urls("http://xmlsoft.org/sources/libxml2-$(version).tar.gz",
|
|
"https://ftp.osuosl.org/pub/blfs/conglomeration/libxml2/libxml2-$(version).tar.gz")
|
|
"https://ftp.osuosl.org/pub/blfs/conglomeration/libxml2/libxml2-$(version).tar.gz")
|
|
add_urls("https://gitlab.gnome.org/GNOME/libxml2.git")
|
|
add_urls("https://gitlab.gnome.org/GNOME/libxml2.git")
|
|
|
|
|
|
add_versions("2.9.9", "94fb70890143e3c6549f265cee93ec064c80a84c42ad0f23e85ee1fd6540a871")
|
|
add_versions("2.9.9", "94fb70890143e3c6549f265cee93ec064c80a84c42ad0f23e85ee1fd6540a871")
|
|
|
|
+ add_versions("2.9.10", "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f")
|
|
|
|
|
|
add_includedirs("include/libxml2")
|
|
add_includedirs("include/libxml2")
|
|
if is_plat("windows") then
|
|
if is_plat("windows") then
|
|
@@ -16,6 +18,9 @@ package("libxml2")
|
|
else
|
|
else
|
|
add_links("xml2")
|
|
add_links("xml2")
|
|
end
|
|
end
|
|
|
|
+ if is_plat("linux") then
|
|
|
|
+ add_syslinks("m")
|
|
|
|
+ end
|
|
|
|
|
|
on_load("macosx", "linux", "iphoneos", "android", function (package)
|
|
on_load("macosx", "linux", "iphoneos", "android", function (package)
|
|
if package:gitref() then
|
|
if package:gitref() then
|
|
@@ -31,11 +36,18 @@ package("libxml2")
|
|
|
|
|
|
on_install("macosx", "linux", "iphoneos", "android", function (package)
|
|
on_install("macosx", "linux", "iphoneos", "android", function (package)
|
|
local configs = {"--disable-dependency-tracking",
|
|
local configs = {"--disable-dependency-tracking",
|
|
|
|
+ "--with-pic",
|
|
"--without-python",
|
|
"--without-python",
|
|
"--without-lzma",
|
|
"--without-lzma",
|
|
"--without-zlib",
|
|
"--without-zlib",
|
|
- "--without-iconv",
|
|
|
|
- "--enable-shared=no"}
|
|
|
|
|
|
+ "--without-iconv"}
|
|
|
|
+ if package:config("shared") then
|
|
|
|
+ table.insert(configs, "--enable-shared=yes")
|
|
|
|
+ table.insert(configs, "--enable-static=no")
|
|
|
|
+ else
|
|
|
|
+ table.insert(configs, "--enable-shared=no")
|
|
|
|
+ table.insert(configs, "--enable-static=yes")
|
|
|
|
+ end
|
|
import("package.tools.autoconf").install(package, configs)
|
|
import("package.tools.autoconf").install(package, configs)
|
|
end)
|
|
end)
|
|
|
|
|