无法使用 tar.gz 存档从源安装应用程序

Joh*_*ohn 3 installation gzip tar

我尝试按照以下步骤安装 utimer (https://launchpad.net/utimer)。

$ tar -zvxf utimer-0.4.tar.gz
$ cd utimer-0.4
/utimer-0.4$ ./configure
/utimer-0.4$ ls 
aclocal.m4  autogen.sh  config.h.in  configure     COPYING  depcomp   INSTALL     Makefile.am    Makefile.in  mkinstalldirs  po      README.in
AUTHORS     ChangeLog   config.log   configure.ac  data     Doxyfile  install-sh  Makefile.decl  missing      NEWS           README  src
/utimer=0.4$ make
make: *** No targets specified and no makefile found.
Run Code Online (Sandbox Code Playgroud)

我将如何进行?

也试过了,

/utimer-0.4$ ./autogen.sh
========= Preparing uTimer ============
======== Running autoreconf ===========
./autogen.sh: line 3: autoreconf: command not found
Run Code Online (Sandbox Code Playgroud)

安装了自动配置。它安装了 4 个新软件包 -autoconf automake autotools-dev m4

但我收到另一个错误。

========= Preparing uTimer ============
======== Running autoreconf ===========
Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf line 196.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf line 196.
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
aclocal: couldn't open directory `m4': No such file or directory
autoreconf: aclocal failed with exit status: 1
Run Code Online (Sandbox Code Playgroud)

如果未生成“makefile”,应该如何进行?

谢谢。

G. *_* He 13

尝试通过以下方式安装 autoreconf:

sudo apt-get install autoconf
Run Code Online (Sandbox Code Playgroud)