não pode instalar o aplicativo da origem usando o arquivo tar.gz

3

Eu tentei instalar o utimer (https://launchpad.net/utimer) seguindo as etapas abaixo.

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

Como devo proceder?

Também tentei,

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

Autoconf instalado. Foram instalados 4 novos pacotes - autoconf automake autotools-dev m4

Mas recebo outro erro.

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

Como se deve proceder quando o 'makefile' não é gerado?

Obrigado.

    
por John 20.04.2012 / 16:05

2 respostas

13

experimente instalar o autoreconf seguindo:

sudo apt-get install autoconf
    
por G. He 20.04.2012 / 16:09
4
sudo apt-get install libtool 

(para libtoolize )

    
por speedyx 29.01.2013 / 17:52