Go to file
Charles Kerr d7a5cf0828 (rpc) fix minor path resolution glitch when serving up clutch files 2008-10-02 16:24:44 +00:00
Transmission.xcodeproj Enable libz on Max 2008-10-01 16:24:26 +00:00
beos
cli add a separate flag for enabling/disabling the rpc address whitelist 2008-10-01 22:59:29 +00:00
daemon add a separate flag for enabling/disabling the rpc address whitelist 2008-10-01 22:59:29 +00:00
doc
gtk (gtk) #1026: "new torrent" dialogue: remember last announce URL 2008-10-02 15:29:45 +00:00
libtransmission (rpc) fix minor path resolution glitch when serving up clutch files 2008-10-02 16:24:44 +00:00
m4 #450: OpenSSL in FreeBSD basesystem doesn't has openssl.pc.. 2008-10-02 02:57:29 +00:00
macosx make sure the rpc whitelist check actually is hooked up to something 2008-10-01 23:05:21 +00:00
misc
po
third-party add support for compressing the content served by the rpc server -- rpc responses and clutch html/css/js files 2008-10-01 15:53:56 +00:00
web (clutch) #1296: Peer count on web interface is wrong 2008-09-28 16:11:12 +00:00
wx (libT) experimental code to serve clutch/rpc via evhttpd 2008-09-25 05:03:39 +00:00
.gitignore
AUTHORS
COPYING
ChangeLog
Makefile.am (web) by Paweł Golonko 2008-09-19 16:17:35 +00:00
NEWS add option to enable/disable rpc whitelist 2008-10-01 23:02:37 +00:00
README
autogen.sh
configure.ac add support for compressing the content served by the rpc server -- rpc responses and clutch html/css/js files 2008-10-01 15:53:56 +00:00
transmission.spec.in
uncrustify.cfg run libT, cli, daemon, gtk through the source-code formatter "uncrustify" as promised/threatened 2008-09-23 19:11:04 +00:00

README

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

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

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

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


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

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

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.0.tar.bz2
    $ cd transmission-1.0
    $ ./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
    $ ./configure -q && make -s

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ svn up
    $ make -s