~ubuntu-branches/ubuntu/hardy/transmission/hardy-updates

« back to all changes in this revision

Viewing changes to README

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2007-10-26 16:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20071026160239-2c0agn7q1ken0xsp
Tags: upstream-0.90.dfsg
ImportĀ upstreamĀ versionĀ 0.90.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
README for Transmission
2
2
=======================
3
3
 
4
 
Transmission is a free, lightweight BitTorrent client. It features a
5
 
simple, intuitive interface on top of an efficient, cross-platform
6
 
back-end.
 
4
Transmission is a fast, easy, and free BitTorrent client.
7
5
 
8
 
Transmission runs on Mac OS X (Cocoa interface),
 
6
It runs on Mac OS X (Cocoa interface),
9
7
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface)
10
8
and BeOS (native interface).
11
9
 
12
 
For more information (including build instructions), please consult the
13
 
website: http://transmission.m0k.org/
 
10
Visit http://transmission.m0k.org/ for more information.
 
11
 
 
12
 
 
13
Building Transmission
 
14
=====================
 
15
 
 
16
Transmission has an Xcode project file (Transmission.xcodeproj)
 
17
for building in Xcode.
 
18
 
 
19
Building a Transmission release from the command line:
 
20
 
 
21
    $ tar xvfz transmission-0.90.tar.gz
 
22
    $ cd transmission-0.90
 
23
    $ ./configure -q && make -s
 
24
    $ su (if necessary for the next line)
 
25
    $ make install
 
26
 
 
27
Building Transmission from SVN (First Time):
 
28
 
 
29
    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
 
30
    $ cd Transmission
 
31
    $ ./autogen.sh
 
32
    $ ./configure -q && make -s
 
33
 
 
34
Building Transmission from SVN (Updating):
 
35
 
 
36
    $ cd Transmission
 
37
    $ svn up
 
38
    $ make -s
 
39