Problemas ao instalar o Wget para o firefox no Ubuntu 14.04 (junto com a extensão fireget)

1

Eu segui as instruções em COMO: instalar a extensão Gwget e Fireget Firefox

mas quando estou tentando compilar o Gwget (usando instruções no arquivo INSTALL) tenho as seguintes mensagens de erro:

laurent06000@PC-DE-LDP:~/Téléchargements/gwget-1.0.4$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gconftool-2... /usr/bin/gconftool-2
checking whether NLS is requested... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for intltool >= 0.35.0... ./configure: line 3598: intltool-update: command not found
 found
configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.

Então, quando digito make:

laurent06000@PC-DE-LDP:~/Téléchargements/gwget-1.0.4$ make
make: *** Pas de cible spécifiée et aucun makefile n'a été trouvé. Arrêt.

Além disso, quando tento abrir o arquivo FireGet-0.6.xpi, ele me diz que essa versão é incompatível com a versão do Firefox (41).

Alguma ideia?

    
por Laurent06000 29.09.2015 / 18:29

1 resposta

1

Instale uma versão atual de intltool . Meu sistema Ubuntu 14.04.3 tem

||/ Name           Version      Architecture Description
+++-==============-============-============-=================================
ii  intltool       0.50.2-2     all          Utility scripts for international

Isto:

sudo apt-get install intltool  

deve fazer isso.

A outra mensagem de erro, que o Google translate diz é:

No target specified and no makefile found. Off.

é causado pela falha anterior do script ./configure , que deveria criar um [Mm]akefile , mas não o fez. Corrigir o primeiro problema e este irá desaparecer.

    
por waltinator 29.09.2015 / 19:42