我正在尝试安装一个方便的程序,它接受 xyz 文件并将它们转换为POVRAY
输入脚本:github
我已经在本地克隆了存储库,但是第一条指令
"run ./configure" does not exist in any directory.
有什么方法可以分析src code
或makefiles
以便在我自己的机器上编译这个吗?
也许我错过了什么?
答案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