如何编译和安装这个?

如何编译和安装这个?

https://github.com/thestinger/vte-ng

我看到了 CONFIGURE、autogen.sh 和 makefile,但我似乎不知道如何安装它们。

有人能帮忙解释一下我需要做什么才能安装它吗?

答案1

首先,你必须从 makefile.am 创建 make 文件。为此

  1. 确保您已安装 autoconf、libglib2.0-dev(用于 AM_GLIB_GNU_GETTEXT 宏)和 gtk-doc-tools sudo apt-get install autoconf libglib2.0-dev gtk-doc-tools

  2. 转到/vte-ng-0.42.4.a

  3. 运行命令autoreconf

  4. automake --add-missing如果出现任何错误,请运行命令

  5. 然后运行./configure
  6. 然后你应该有一个正常的 makefile,所以运行make
  7. 运行sudo make install 应该可以安装

相关内容