Re-Enable Auto Downloads in UBUNTU (12.04 + SPRING PPA)
Posted: 22 May 2012, 19:32
Based on Springlobby - no "downloads" tab on Debian 6
It seems that there is a licensing issue preventing Spring Lobby from being released on Ubuntu or Debian with torrent functionality enabled, but as end users we can compile our own binary and regain the functionality...
first make sure you have latest spring from ppa (this will also make sure you have necessary libraries to run the game:
then get the development files needed to compile Spring Lobby with torrent support
get the latest Spring Lobby code and extract the contents. Heres what I used for 1.47:
configure and compile new Spring Lobby and install it to /opt/
you can then run Spring Lobby from /opt/springlobby/bin/springlobby or modify your existing Spring Lobby shortcut. Good Luck!
(fixed source path)
It seems that there is a licensing issue preventing Spring Lobby from being released on Ubuntu or Debian with torrent functionality enabled, but as end users we can compile our own binary and regain the functionality...
first make sure you have latest spring from ppa (this will also make sure you have necessary libraries to run the game:
Code: Select all
$ sudo add-apt-repository ppa:spring/ppa
$ sudo apt-get update
$ sudo apt-get install spring springlobby
Code: Select all
$ sudo apt-get install libwxgtk2.8-dev libopenal-dev libmpg123-dev \
libvorbis-dev libnotify-dev libglib2.0-dev libtorrent-rasterbar-dev \
libcurl4-openssl-dev cmake build-essential
get the latest Spring Lobby code and extract the contents. Heres what I used for 1.47:
Code: Select all
$ wget http://springlobby.info/tarballs/springlobby-0.147.tar.bz2
$ tar xvf springlobby-0.147.tar.bz2
$ cd springlobby-0.147
Code: Select all
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=/opt/springlobby \
-DOPTION_TRANSLATION_SUPPORT=OFF \
-DOPTION_TORRENT_SYSTEM=TRUE .
$ sudo make install
(fixed source path)