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.
27 lines
1.2 KiB
27 lines
1.2 KiB
package("mpc") |
|
|
|
set_homepage("http://www.multiprecision.org/mpc/") |
|
set_description("GNU MPC is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result.") |
|
set_license("LGPL-3.0") |
|
|
|
add_urls("https://ftp.gnu.org/gnu/mpc/mpc-$(version).tar.gz") |
|
add_versions("1.2.1", "17503d2c395dfcf106b622dc142683c1199431d095367c6aacba6eec30340459") |
|
|
|
add_deps("gmp", "mpfr") |
|
on_install("macosx", "linux", function (package) |
|
local configs = {"--disable-dependency-tracking", "--with-pic"} |
|
table.insert(configs, "--with-gmp=" .. package:dep("gmp"):installdir()) |
|
table.insert(configs, "--with-mpfr=" .. package:dep("mpfr"):installdir()) |
|
if package:config("shared") then |
|
table.insert(configs, "--enable-shared=yes") |
|
table.insert(configs, "--enable-static=no") |
|
else |
|
table.insert(configs, "--enable-static=yes") |
|
table.insert(configs, "--enable-shared=no") |
|
end |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("mpc_add", {includes = "mpc.h"})) |
|
end)
|
|
|