1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-03 04:53:27 +00:00
No description
Find a file
2009-02-11 16:34:35 +00:00
cli
daemon (trunk libT) #1784: add .netrc support to transmission-remote 2009-02-10 16:22:59 +00:00
doc (trunk doc) tweak the RPC spec as suggested by chorlya 2009-02-10 18:19:09 +00:00
gtk (trunk gtk) #1735: .torrent files are not deleted even if you said so 2009-02-09 20:08:33 +00:00
libtransmission (trunk libT) partial revert of r7825: back out the refillPulse() changes 2009-02-11 16:34:35 +00:00
m4
macosx
misc
po (gtk) sync up with launchpad's translations 2008-11-09 15:19:45 +00:00
third-party add miniupnpcstrings.h to makefile 2009-02-07 01:40:30 +00:00
Transmission.xcodeproj compile asserts out of the release build 2009-02-07 15:58:18 +00:00
web
wx
.gitignore
AUTHORS
autogen.sh
ChangeLog
configure.ac
COPYING
Makefile.am
NEWS
README
transmission.spec.in
uncrustify.cfg

README for Transmission
=======================

Transmission is a fast, easy, and free BitTorrent client.

It runs on Mac OS X (Cocoa interface) and
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface).

Visit http://www.transmissionbt.com/ for more information.


Building Transmission
=====================

Transmission has an Xcode project file (Transmission.xcodeproj)
for building in Xcode.

For a more detailed description, and dependancies, visit:
http://trac.transmissionbt.com/wiki/

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.40.tar.bz2
    $ cd transmission-1.40
    $ ./configure -q && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ make -s
    $ su (if necessary for the next line)
    $ make install