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.
47 lines
2.1 KiB
47 lines
2.1 KiB
package("libiconv") |
|
|
|
set_homepage("https://www.gnu.org/software/libiconv") |
|
set_description("Character set conversion library.") |
|
|
|
set_urls("https://ftp.gnu.org/gnu/libiconv/libiconv-$(version).tar.gz", |
|
"https://ftpmirror.gnu.org/libiconv/libiconv-$(version).tar.gz") |
|
add_versions("1.16", "e6a1b1b589654277ee790cce3734f07876ac4ccfaecbee8afa0b649cf529cc04") |
|
add_versions("1.15", "ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178") |
|
|
|
if is_plat("macosx") then |
|
add_patches("1.15", path.join(os.scriptdir(), "patches", "1.15", "patch-utf8mac.diff"), |
|
"e8128732f22f63b5c656659786d2cf76f1450008f36bcf541285268c66cabeab") |
|
elseif is_plat("android") then |
|
add_patches("1.x", path.join(os.scriptdir(), "patches", "1.16", "makefile.in.patch"), |
|
"d09e4212040f5adf1faa5cf5a9a18f6f79d4cdce9affb05f2e75df2ea3b3d686") |
|
end |
|
|
|
on_load(function (package) |
|
package:addenv("PATH", "bin") |
|
end) |
|
|
|
on_install("macosx", "linux", "android", function (package) |
|
local configs = {"--disable-dependency-tracking", "--enable-extra-encodings"} |
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no")) |
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes")) |
|
if package:debug() then |
|
table.insert(configs, "--enable-debug") |
|
end |
|
if package:config("pic") ~= false then |
|
table.insert(configs, "--with-pic") |
|
end |
|
if package:is_plat("android") then |
|
io.replace("./configure", "#define gid_t int", "") |
|
io.replace("./configure", "#define uid_t int", "") |
|
end |
|
os.vrunv("make", {"-f", "Makefile.devel", "CFLAGS=" .. (package:config("cflags") or "")}) |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
if package:is_plat("macosx", "linux") then |
|
os.vrun("iconv --version") |
|
end |
|
assert(package:has_cfuncs("iconv_open(0, 0);", {includes = "iconv.h"})) |
|
end) |
|
|
|
|