编译Readme中缺少配置脚本的代码

编译Readme中缺少配置脚本的代码

我正在尝试安装一个方便的程序,它接受 xyz 文件并将它们转换为POVRAY输入脚本:github

我已经在本地克隆了存储库,但是第一条指令

"run ./configure" does not exist in any directory.

有什么方法可以分析src codemakefiles以便在我自己的机器上编译这个吗?

也许我错过了什么?

答案1

似乎有一个配置脚本模板ac-tools子目录中:

$ ls ac-tools/
aclocal.m4  config.guess  config.sub  configure.in  install-sh  Make.conf.in  shtool

您可以使用模板从模板创建配置脚本autoconf

autoconf -o configure ac-tools/configure.in
chmod +x configure
./configure

相关内容