update README to use Makefile to build and install deluge

This commit is contained in:
Zach Tibbitts 2007-07-24 17:05:31 +00:00
parent f8e1df3515
commit ae2f7d60c9
2 changed files with 36 additions and 13 deletions

37
README
View File

@ -1,18 +1,31 @@
Deluge BitTorrent Client ==========================
Deluge BitTorrent Client
==========================
Authors: Authors:
Zach Tibbitts, aka zachtib Zach Tibbitts, aka zachtib
Alon Zakai, aka kripkenstein Alon Zakai, aka kripkenstein
Marcos Pinto, aka markybob Marcos Pinto, aka markybob
Andrew Resch, aka andar Andrew Resch, aka andar
Alex Dedul, aka plisk
Homepage: http://deluge-torrent.org Homepage: http://deluge-torrent.org
==========================
Contact/Support:
==========================
We have two options available for support:
Our Forum, at http://forum.deluge-torrent.org
or
Our IRC Channel, at #deluge on Freenode
========================== ==========================
Installation Instructions: Installation Instructions:
========================== ==========================
First, make sure you have the proper bulid dependencies installed. On a normal First, make sure you have the proper build dependencies installed. On a normal
Debian or Ubuntu system, those dependencies are: Debian or Ubuntu system, those dependencies are:
g++ g++
@ -35,19 +48,29 @@ But the names of the packages may vary depending on your OS / distro.
Once you have the needed libraries installed, build Deluge by running: Once you have the needed libraries installed, build Deluge by running:
python setup.py build $ make
You shouldn't get any errors. Then run, as root (or by using sudo): You shouldn't get any errors. Then run, as root (or by using sudo):
python setup.py install $ make install
and Deluge will be installed. and Deluge will be installed. By default, Deluge will be installed to the
prefix /usr. If you wish, you can install Deluge to a different prefix by
specifying it when you install it:
$ PREFIX=yourprefixhere make install
So, to install to /usr/local, run:
$ PREFIX=/usr/local make install
You can then run Deluge by executing: You can then run Deluge by executing:
deluge $ deluge
Notes: ==========================
Additional Notes:
==========================
1) On some distributions, boost libraries are renamed to have "-mt" at the end 1) On some distributions, boost libraries are renamed to have "-mt" at the end
(boost_thread_mt instead of boost_thread, for example), the "mt" indicating (boost_thread_mt instead of boost_thread, for example), the "mt" indicating

View File

@ -1,8 +1,8 @@
NOTE: Deluge 0.5.1 and newer uses an unstable build of libtorrent. This build differs NOTE: Deluge 0.5.1 and newer uses an unstable build of libtorrent. This build
from a clean libtorrent source checkout and has been hacked in order to get it differs from a clean libtorrent source checkout and has been hacked in order
to work properly with Deluge. As a result, Deluge will likely not build to get it to work properly with Deluge. As a result, Deluge will likely not
properly against a vanilla libtorrent 0.12 installation or a nightly build of build properly against a vanilla libtorrent 0.12 installation or a nightly
libtorrent 0.13. It is recommended that you build against our included build oflibtorrent 0.13. It is recommended that you build against our included
libtorrent, as our build will not conflict with any installed libtorrent. libtorrent, as our build will not conflict with any installed libtorrent.
- zachtib - zachtib