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.
 
 
 

57 lines
2.4 KiB

package("libffi")
set_homepage("https://sourceware.org/libffi/")
set_description("Portable Foreign Function Interface library.")
set_urls("https://github.com/libffi/libffi/releases/download/v$(version)/libffi-$(version).tar.gz",
"https://github.com/libffi/libffi.git")
add_versions("3.2.1", "d06ebb8e1d9a22d19e38d63fdb83954253f39bedc5d46232a05645685722ca37")
add_versions("3.3", "72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056")
add_versions("3.4.2", "540fb721619a6aba3bdeef7d940d8e9e0e6d2c193595bc243241b77ff9e93620")
if is_plat("linux") then
add_extsources("apt::libffi-dev", "pacman::libffi")
elseif is_plat("macosx") then
add_extsources("brew::libffi")
end
on_load("macosx", "linux", "iphoneos", function (package)
if package:gitref() then
package:add("deps", "autoconf", "automake", "libtool")
elseif package:version():le("3.2.1") then
package:add("includedirs", "lib/libffi-" .. package:version_str() .. "/include")
end
end)
on_install("windows", function (package)
io.gsub("fficonfig.h.in", "# *undef (.-)\n", "${define %1}\n")
os.cp(path.join(os.scriptdir(), "port", "xmake.lua"), "xmake.lua")
import("package.tools.xmake").install(package, {
vers = package:version_str()
})
end)
on_install("macosx", "linux", "iphoneos", function (package)
local configs = {"--disable-silent-rules", "--disable-dependency-tracking"}
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
import("package.tools.autoconf").install(package, configs)
if package:is_plat("linux") and package:is_arch("x86_64") then
local lib64 = path.join(package:installdir(), "lib64")
if os.isdir(lib64) then
package:add("links", "ffi")
package:add("linkdirs", "lib64")
end
end
end)
on_test(function (package)
assert(package:has_cfuncs("ffi_closure_alloc", {includes = "ffi.h"}))
end)