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.4 KiB

6 years ago
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.15", "ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178")
if is_plat("macosx") then
add_patches("1.15", "https://raw.githubusercontent.com/Homebrew/patches/9be2793af/libiconv/patch-utf8mac.diff",
"e8128732f22f63b5c656659786d2cf76f1450008f36bcf541285268c66cabeab")
end
6 years ago
on_load(function (package)
package:addenv("PATH", "bin")
end)
on_install("macosx", "linux", function (package)
6 years ago
local configs = {"--enable-static", "--enable-shared=no", "--disable-dependency-tracking", "--enable-extra-encodings"}
6 years ago
if package:debug() then
table.insert(configs, "--enable-debug")
else
table.insert(configs, "--disable-debug")
end
os.vrunv("make", {"-f", "Makefile.devel", "CFLAGS=" .. (package:config("cflags") or "")})
6 years ago
import("package.tools.autoconf").install(package, configs)
end)
on_test(function (package)
os.vrun("iconv --version")
6 years ago
assert(package:has_cfuncs("iconv_open(0, 0);", {includes = "iconv.h"}))
6 years ago
end)