Mudanças entre as edições de "Go For It"
De MochilaWiki
Ir para navegaçãoIr para pesquisar (Criou página com 'http://www.edivaldobrito.com.br/lista-de-coisas-para-fazer-instale-go-for-it/ https://github.com/mank319/Go-For-It mkdir build cd build cmake .. make sudo make install') |
|||
(2 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
− | + | Página do projeto | |
− | + | * https://github.com/mank319/Go-For-It | |
− | https://github.com/mank319/Go-For-It | ||
+ | <source lang="bash"> | ||
+ | sudo zypper in gtk3-devel libnotify-devel | ||
+ | git clone https://github.com/mank319/Go-For-It.git | ||
mkdir build | mkdir build | ||
cd build | cd build | ||
Linha 8: | Linha 10: | ||
make | make | ||
sudo make install | sudo make install | ||
+ | </source> | ||
+ | |||
+ | == em Ubuntu == | ||
+ | <source lang="bash"> | ||
+ | sudo add-apt-repository ppa:mank319/go-for-it && sudo apt-get update | ||
+ | sudo apt-get install go-for-it | ||
+ | </source> | ||
+ | |||
+ | == em Debian Jessie == | ||
+ | <source lang="bash"> | ||
+ | sudo apt-get install libnotify-dev cmake libgtk-3-dev valac | ||
+ | cd /tmp/ | ||
+ | git clone https://github.com/mank319/Go-For-It.git | ||
+ | cd Go-For-It/ | ||
+ | mkdir build; cd $_ | ||
+ | cmake .. | ||
+ | sudo make install | ||
+ | </source> | ||
+ | |||
+ | |||
+ | |||
+ | Referência | ||
+ | * http://www.edivaldobrito.com.br/lista-de-coisas-para-fazer-instale-go-for-it/ |
Edição atual tal como às 22h28min de 19 de novembro de 2015
Página do projeto
sudo zypper in gtk3-devel libnotify-devel
git clone https://github.com/mank319/Go-For-It.git
mkdir build
cd build
cmake ..
make
sudo make install
em Ubuntu
sudo add-apt-repository ppa:mank319/go-for-it && sudo apt-get update
sudo apt-get install go-for-it
em Debian Jessie
sudo apt-get install libnotify-dev cmake libgtk-3-dev valac
cd /tmp/
git clone https://github.com/mank319/Go-For-It.git
cd Go-For-It/
mkdir build; cd $_
cmake ..
sudo make install
Referência