mirror of
https://github.com/RubyMetric/chsrc.git
synced 2024-11-22 11:20:02 +08:00
Add flatpak alias
This commit is contained in:
parent
be8c119f46
commit
9e515872c2
|
@ -235,7 +235,7 @@ chsrc set winget
|
|||
chsrc set brew 或 homebrew
|
||||
chsrc set cocoapods 或 cocoa / pod
|
||||
chsrc set dockerhub 或 docker
|
||||
chsrc set flathub
|
||||
chsrc set flathub 或 flatpak
|
||||
chsrc set nix
|
||||
chsrc set guix
|
||||
chsrc set emacs 或 elpa
|
||||
|
@ -274,7 +274,7 @@ make clean
|
|||
## ❤️ 致谢
|
||||
|
||||
感谢各个镜像站提供的优质免费镜像服务
|
||||
1. [source.h](./src/source.h) 包含了通用的镜像站信息
|
||||
1. [source.h](./include/source.h) 包含了通用的镜像站信息
|
||||
2. 各个recipe内部定义的专用镜像站
|
||||
|
||||
另外感谢以下项目:
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
#include "recipe/ware/Nix.c"
|
||||
#include "recipe/ware/Guix.c"
|
||||
#include "recipe/ware/Flathub.c"
|
||||
#include "recipe/ware/docker.c"
|
||||
#include "recipe/ware/Docker-Hub.c"
|
||||
#include "recipe/ware/Anaconda.c"
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* File Authors : Aoran Zeng <ccmywish@qq.com>
|
||||
* Contributors : Nil Null <nil@null.org>
|
||||
* Created On : <2023-09-01>
|
||||
* Last Modified : <2024-08-15>
|
||||
* Last Modified : <2024-08-16>
|
||||
* ------------------------------------------------------------*/
|
||||
|
||||
/* Begin Target Matrix */
|
||||
|
@ -89,11 +89,11 @@ static const char
|
|||
|
||||
|
||||
static const char
|
||||
*wr_winget [] = {"winget", NULL, t(&wr_winget_target)},
|
||||
*wr_homebrew[] = {"brew", "homebrew", NULL, t(&wr_homebrew_target)},
|
||||
*wr_cocoapods[] = {"cocoa", "cocoapods","pod", "cocoapod", NULL, t(&wr_cocoapods_target)},
|
||||
*wr_winget [] = {"winget", NULL, t(&wr_winget_target)},
|
||||
*wr_homebrew[] = {"brew", "homebrew", NULL, t(&wr_homebrew_target)},
|
||||
*wr_cocoapods[] = {"cocoa", "cocoapods","pod", "cocoapod", NULL, t(&wr_cocoapods_target)},
|
||||
*wr_dockerhub [] ={"dockerhub", "docker", NULL, t(&wr_dockerhub_target)},
|
||||
*wr_flathub [] = {"flathub", NULL, t(&wr_flathub_target)},
|
||||
*wr_flathub [] = {"flathub", "flatpak", NULL, t(&wr_flathub_target)},
|
||||
*wr_nix [] = {"nix", NULL, t(&wr_nix_target)},
|
||||
*wr_guix [] = {"guix", NULL, t(&wr_guix_target)},
|
||||
*wr_emacs [] = {"emacs", "elpa", NULL, t(&wr_emacs_target)},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* File Authors : Aoran Zeng <ccmywish@qq.com>
|
||||
* Contributors : Nil Null <nil@null.org>
|
||||
* Created On : <2024-06-08>
|
||||
* Last Modified : <2024-08-09>
|
||||
* Last Modified : <2024-08-16>
|
||||
* ------------------------------------------------------------*/
|
||||
|
||||
static MirrorSite
|
Loading…
Reference in New Issue
Block a user