web-dev-qa-db-fra.com

Comment installer le logiciel Gnome Software Center dans Ubuntu Gnome 15.04?

Comment puis-je installer le logiciel Gnome Software Center?

J'ai trouvé le fichier .tat.xz sur Softpedia

http://linux.softpedia.com/get/System/Software-Distribution/GNOME-Software-102470.shtml

mais je suis incapable de construire sur Ubuntu 15.04. ./configure donne des erreurs.

3
charliemoss

Une meilleure façon est de construire avec JHBuild et checkinstall:

Sudo apt-get install checkinstall
git clone git://git.gnome.org/jhbuild
cd jhbuild
./autogen.sh
make
Sudo checkinstall --pkgversion $(date +%Y%m%d)

A partir de là, c'est cher:

~/.local/bin/jhbuild sysdeps --install
~/.local/bin/jhbuild build gnome-software
2
A.B.