1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2022-08-24 20:54:48 +08:00
parent 28724b07d9
commit 7537ef343b
5 changed files with 12 additions and 5 deletions

View File

@ -13,7 +13,7 @@ section "构建"
spark shell `
yum install -y wget make gcc
yum install -y libcurl-devel.x86_64 openssl-devel.x86_64
yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker
yum install -y perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker
wget http://mirrors.tencent.com/macports/distfiles/git-cinnabar/git-2.31.1.tar.gz
tar xvf git-2.31.1.tar.gz && cd git-2.31.1

View File

@ -125,7 +125,7 @@ func _status_stat(m *ice.Message, files, adds, dels int) (int, int, int) {
return files, adds, dels
}
func _status_list(m *ice.Message) (files, adds, dels int, last time.Time) {
defer m.Sort(REPOS)
defer m.Sort("repos,type")
m.Cmd(REPOS, ice.OptionFields("name,path")).TableGo(func(value ice.Maps, lock *task.Lock) {
msg := m.Spawn(kit.Dict(cli.CMD_DIR, value[nfs.PATH]))
diff := _git_cmds(msg, STATUS, "-sb")

View File

@ -10,5 +10,8 @@ field web.code.java.compile
spark shell `
wget https://github.com/Tencent/TencentKona-8/releases/download/8.0.11-GA/TencentKona8.0.11.b2_jdk_linux-x86_64_8u345.tar.gz
tar xvf TencentKona8.0.11.b2_jdk_linux-x86_64_8u345.tar.gz && cd TencentKona-8.0.11-345/
wget https://mirrors.huaweicloud.com/openjdk/18/openjdk-18_linux-x64_bin.tar.gz
tar xvf openjdk-18_linux-x64_bin.tar.gz && cd jdk-18
`

View File

@ -6,3 +6,7 @@ refer `
`
field web.code.node.compile
shell `
wget https://mirrors.tencent.com/nodejs-release/v16.15.1/node-v16.15.1-linux-x64.tar.xz
tar xvf node-v16.15.1-linux-x64.tar.xz && cd node-v16.15.1-linux-x64
`

View File

@ -11,12 +11,12 @@ field "源码" web.code.inner args `usr/install/vim-vim-12be734/ src/main.c 110`
section "构建"
spark shell `
wget http://mirrors.tencent.com/macports/distfiles/vim/vim-8.2.2681.tar.gz
tar xvf vim-8.2.2681.tar.gz && cd vim-vim-12be734
yum install -y wget make gcc
yum install -y ncurses-devel.x86_64 bzip2.x86_64
wget http://mirrors.tencent.com/macports/distfiles/vim/vim-8.2.2681.tar.gz
tar xvf vim-8.2.2681.tar.gz && cd vim-vim-12be734
./configure --prefix=$PWD/_install --enable-multibyte=yes
make -j8 && make install
`