Mudanças entre as edições de "Go For It"
De MochilaWiki
Ir para navegaçãoIr para pesquisar(Uma revisão intermediária pelo mesmo usuário não está sendo mostrada) | |||
Linha 11: | Linha 11: | ||
sudo make install | sudo make install | ||
</source> | </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 | Referência | ||
* http://www.edivaldobrito.com.br/lista-de-coisas-para-fazer-instale-go-for-it/ | * 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