web-dev-qa-db-fra.com

ne peut pas installer l'application à partir de la source à l'aide de l'archive tar.gz

J'ai essayé d'installer utimer (https://launchpad.net/utimer) en suivant les étapes ci-dessous.

$ 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.

Comment vais-je procéder?

Aussi essayé,

/utimer-0.4$ ./autogen.sh
========= Preparing uTimer ============
======== Running autoreconf ===========
./autogen.sh: line 3: autoreconf: command not found

Installé autoconf. Il a installé 4 nouveaux paquets - autoconfautomakeautotools-devm4

Mais je reçois une autre erreur.

========= 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

Comment procéder quand "makefile" n'est pas généré?

Merci.

3
John

essayez d'installer autoreconf en procédant comme suit:

Sudo apt-get install autoconf
13
G. He
Sudo apt-get install libtool 

(pour libtoolize)

4
speedyx