无法“进行全新安装”:找不到“tic”

问题描述 投票:0回答:0

我安装了Alpine Linux,正在安装DWM Dmenu和St.

我 git 克隆了它们,并使用 make 和 make clean install 命令。

它适用于 DWM 和 Dmenu,但是在 st 中执行“全新安装”时,它出现了这个错误:

localhost:~/st# make clean install
rm -f st st.0 x.0 st-0.9.tar.gz
c99 -I/usr/X11R6/include `pkg-config --cflags fontconfig` `pkg-config --cflags freetype2` -DVERSION=\"0.9\" -D_XOPEN_SOURCE=600 -01 -c st.c
c99 -I/usr/X11R6/include `pkg-config --cflags fontconfig` `pkg-config --cflags freetype2` -DVERSION=\"0.9\" -D_XOPEN_SOURCE=600 -01 -c x.c
c99 -o st st.0 x.o -L/usr/X11R6/lib -lm -lrt -lX11 -lutil -lXft `pkg-config --libs fontconfig` `pkg-config --libs freetype2`
mkdir 0p /usr/local/bin
cp -f st /usr/local/bin
chmod 755 /usr/local/bin/st
mkdir -p /usr/local/share/man/man1
sed "s/VERSION/0.9/g" < st.1 > /usr/local/share/man/man1/st.1
chmod 644 /usr/local/share/man/man1/st.1
tic -sx st.info
make: tic: No such file or directory
make: *** [Makefile:50: install] Error 127
localhost:~/st#

我尝试安装tic,但是失败了:

localhost:~/st# apk add tic
ERROR: unable to select packages:
  tic (no such package):
    required by: world[tic]
localhost:~/st#

任何想法???

linux makefile alpine-linux
© www.soinside.com 2019 - 2024. All rights reserved.