Skip to content

Instantly share code, notes, and snippets.

@bencevans
Last active December 17, 2015 07:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bencevans/5572022 to your computer and use it in GitHub Desktop.
Save bencevans/5572022 to your computer and use it in GitHub Desktop.
Ubuntu 13.04 Tomahawk Build
sudo apt-get update
sudo apt-get install -y python-software-properties
sudo add-apt-repository -y ppa:tomahawk
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y libechonest-dev libfftw3-dev libsamplerate0-dev libgsasl7-dev subversion build-essential cmake libtag1c2a libtag1-dev libqt5-dev libqt5-sql-sqlite \
libphonon-dev libboost-dev libboost-thread-dev zlib1g-dev libgnutls-dev libz-dev \
libqjson-dev libattica-dev libqca2-dev libx11-dev pkg-config libqca2-plugin-ossl git-core libspeex-dev # phonon-backend-vlc
cd ~
git clone git://anongit.kde.org/libechonest.git
mkdir libechonest/build && cd libechonest/build
cmake ..
make
sudo make install
cd ~
git clone git://github.com/minimoog/QTweetLib.git
mkdir QTweetLib/build && cd QTweetLib/build
git checkout 0.5
cmake ..
make
sudo make install
cd ~
git clone git://github.com/lastfm/liblastfm.git
mkdir liblastfm/build && cd liblastfm/build
cmake ..
make
sudo make install
cd ~
git clone git://github.com/euroelessar/jreen.git
mkdir jreen/build && cd jreen/build
cmake ..
make
sudo make install
cd ~
git clone git://clucene.git.sourceforge.net/gitroot/clucene/clucene
mkdir clucene/build && cd clucene/build
cmake ..
make
sudo make install
cd ~
svn co https://quazip.svn.sourceforge.net/svnroot/quazip/trunk/quazip
mkdir quazip/build && cd quazip/build
cmake ..
make
sudo make install
cd ~
git clone git://github.com/frankosterfeld/qtkeychain.git
mkdir qtkeychain/build && cd qtkeychain/build
cmake ..
make
sudo make install
cd ~
git clone git://github.com/tomahawk-player/tomahawk.git
mkdir tomahawk/build && cd tomahawk/build
cmake ..
make
./tomahawk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment