Skip to content

Instantly share code, notes, and snippets.

@patriciogonzalezvivo
Created June 27, 2015 12:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save patriciogonzalezvivo/421268f7425b99df40a8 to your computer and use it in GitHub Desktop.
Save patriciogonzalezvivo/421268f7425b99df40a8 to your computer and use it in GitHub Desktop.
Compiling a Tox Client in RPi
git clone git://github.com/jedisct1/libsodium.git
cd libsodium
git checkout tags/1.0.0
./autogen.sh
./configure && make check
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc
sudo ldconfig
cd ..
git clone git://github.com/irungentoo/toxcore.git
cd toxcore
autoreconf -i
./configure
make
sudo make install
sudo apt-get install libconfig-dev make libopenal-dev libalut-dev libnotify-dev asciidoc libncursesw5-dev
git clone git://github.com/Tox/toxic.git
cd toxic
make PREFIX="/usr/local/"
sudo make install PREFIX="/usr/local/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment