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.
 
 
 

38 lines
1.7 KiB

package("mysql")
set_homepage("https://dev.mysql.com/doc/refman/5.7/en/")
set_description("Open source relational database management system.")
set_urls("https://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-$(version).tar.gz")
add_versions("5.7.29", "00f514124de2bad1ba7b380cbbd46e316cae7fc7bc3a5621456cabf352f27978")
if is_plat("macosx", "linux") then
add_deps("cmake", "openssl")
end
add_includedirs("include/mysql")
on_install("macosx", "linux", function (package)
-- https://bugs.mysql.com/bug.php?id=87348
-- Fixes: "ADD_SUBDIRECTORY given source
-- 'storage/ndb' which is not an existing"
io.gsub("CMakeLists.txt", "ADD_SUBDIRECTORY%(storage/ndb%)", "")
local configs = { "-DCOMPILATION_COMMENT=XMake",
"-DDEFAULT_CHARSET=utf8",
"-DDEFAULT_COLLATION=utf8_general_ci",
"-DINSTALL_DOCDIR=share/doc/#{name}",
"-DINSTALL_INCLUDEDIR=include/mysql",
"-DINSTALL_INFODIR=share/info",
"-DINSTALL_MANDIR=share/man",
"-DINSTALL_MYSQLSHAREDIR=share/mysql",
"-DWITH_BOOST=../boost",
"-DWITH_EDITLINE=" .. (is_plat("macosx") and "system" or "bundled"),
"-DWITH_SSL=yes",
"-DWITH_UNIT_TESTS=OFF",
"-DWITHOUT_SERVER=ON"}
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("mysql_init", {includes = "mysql.h"}))
end)