Skip to content

Instantly share code, notes, and snippets.

@skwerlman
Last active April 23, 2017 08:33
Show Gist options
  • Select an option

  • Save skwerlman/f32f62ab90b8d4c8369f to your computer and use it in GitHub Desktop.

Select an option

Save skwerlman/f32f62ab90b8d4c8369f to your computer and use it in GitHub Desktop.
install cockatrice bleeding-edge on xubuntu
#!/usr/bin/env bash
sudo true || (echo "fatal: Root is needed to perform an upgrade!" & kill $$)
sudo add-apt-repository -y ppa:ubuntu-sdk-team/ppa
sudo apt-get update
sudo apt-get -y install git libprotobuf-dev protobuf-compiler qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev qt5-default qttools5-dev-tools qttools5-dev qtmultimedia5-dev libqt5svg5-dev cmake
cd ~
git clone git://github.com/Daenyth/Cockatrice
cd Cockatrice
mkdir build
cd build
cmake ..
make
sudo make install
#!/usr/bin/env bash
sudo true || (echo "fatal: Root is needed to perform an upgrade!" & kill $$)
sudo apt-get update
sudo apt-get -y upgrade git libprotobuf-dev protobuf-compiler qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev qt5-default qttools5-dev-tools qttools5-dev qtmultimedia5-dev libqt5svg5-dev cmake
cd ~/Cockatrice
git pull
mkdir build &>/dev/null
cd build
cmake ..
make
sudo make install
@stagfoo

stagfoo commented Apr 23, 2017

Copy link
Copy Markdown

thank you kind sir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment