~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to libtorrent/README

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-11-13 02:39:45 UTC
  • mfrom: (4.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091113023945-te1bybo2912ejzuc
Tags: 1.2.0~rc3-4
* debian/control: bump build-dep on python-setuptools to (>= 0.6c9).
* debian/patches:
  - 25_r5921_fastresume_files.patch
    new, should fix problems with fresh configs;
  - 30_r5931_ipc_lockfile.patch:
    new, should fix an issue where Deluge will fail to start if there is a
    stale ipc lockfile. (Closes: #555849)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
libtorrent is a C++ library that aims to be a good alternative to all the
2
 
other bittorrent implementations around. It is a
3
 
library and not a full featured client, although it comes with a working
4
 
example client.
5
 
 
6
 
The main goals of libtorrent are:
7
 
 
8
 
        * to be cpu efficient
9
 
        * to be memory efficient
10
 
        * to be very easy to use
11
 
 
12
 
See docs/manual.html for more detailed build and usage instructions.
13
 
 
14
 
To build with autotools, run:
15
 
 
16
 
   ./configure
17
 
 
18
 
Followed by
19
 
 
20
 
   make
21
 
 
22
 
When libtorrent is built, finish off by running the tests:
23
 
 
24
 
   make check
25