Files
chsrc/src/recipe/lang/Lua.c
2024-08-18 09:27:22 +08:00

58 lines
1.5 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** ------------------------------------------------------------
* SPDX-License-Identifier: GPL-3.0-or-later
* -------------------------------------------------------------
* File Authors : Aoran Zeng <ccmywish@qq.com>
* Contributors : Nil Null <nil@null.org>
* Created On : <2023-09-27>
* Last Modified : <2024-08-09>
* ------------------------------------------------------------*/
static MirrorSite
Api7 = {"api7", "api7.ai", "深圳支流科技有限公司", "https://www.apiseven.com/", NULL};
/**
* @time 2023-09-27 更新
* @note 目前只有一个源
*/
static SourceInfo
pl_lua_sources[] = {
{&Upstream, NULL},
{&Api7, "https://luarocks.cn"},
};
def_sources_n(pl_lua);
void
pl_lua_getsrc (char *option)
{
chsrc_view_file ("~/.luarocks/config.lua");
chsrc_view_file ("~/.luarocks/upload_config.lua");
}
/**
* Lua 换源参考https://luarocks.cn/
*/
void
pl_lua_setsrc (char *option)
{
chsrc_yield_source_and_confirm (pl_lua);
char *config = xy_strjoin (3, "rocks_servers = {\n"
" \"", source.url, "\"\n"
"}");
chsrc_note2 ("请手动修改 ~/.luarocks/config.lua 文件 (用于下载):");
puts (config);
char *upload_config = xy_strjoin (3, "key = \"<Your API Key>\"\n"
"server = \"", source.url, "\"");
chsrc_note2 ("请手动修改 ~/.luarocks/upload_config.lua 文件 (用于上传):");
puts (upload_config);
chsrc_conclude (&source, ChsrcTypeManual);
}
def_target(pl_lua);