Obtendo um pacote não encontrado quando eu faço ./configure

0

Estou tentando instalar o msitools a partir do link . Quando eu faço um ./configure, recebo o seguinte erro:

configure: error: Package requirements (libgsf-1) were not met:

No package 'libgsf-1' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GSF_CFLAGS
and GSF_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Eu acredito que libgsf-1 não está instalado, então quando eu faço o sudo apt-get install libgsf-1, eu recebo o erro abaixo:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libgsf-1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libgsf-bin:i386 libgsf-bin libgsf-1-common 

E: Package 'libgsf-1' has no installation candidate

Por favor me ajude a resolver isso.

    
por am28 23.10.2015 / 21:47

1 resposta

2

tente instalar o libgsf-1-dev:

sudo apt-get install  libgsf-1-dev

Como eu sabia fazer isso? Ok, eu acreditei em você quando você disse que o libgsf não estava instalado. e libgsf-1 não soa como um nome de pacote para mim, se fosse, seu nome seria libgsf-1-something.  De qualquer forma, eu procurei os repositórios para o pacote:

$ sudo apt-cache search libgsf-1
libgsf-1-114 - Structured File Library - runtime version
libgsf-1-114-dbg - Structured File Library - debugging files (basic version)
libgsf-1-common - Structured File Library - common files
libgsf-1-dev - Structured File Library - development files

Se você percebeu, quando executou sudo apt-get install libgsf-1-dev , provavelmente viu libgsf-1-114 libgsf-1-common libgsf-1-dev listado no conjunto de arquivos instalado. Você precisa da versão dev? IDK, eu suponho que sim.

    
por j0h 23.10.2015 / 21:51