Go to file
Mitchell Livingston a9d4c96cd4 stop the torrent update function from creating a mutable string to then place it in another mutable string 2007-09-16 15:51:25 +00:00
Transmission.xcodeproj Network prefs become advanced prefs, and add a (disabled) option for encryption 2007-09-15 01:47:11 +00:00
beos
cli
daemon Catch up with an old libT API change and allow autostart to be disabled again. 2007-09-05 04:05:30 +00:00
doc extra docs for uTorrent's PEX 2007-08-25 04:20:25 +00:00
gtk
libtransmission in WIN32, #define lseek _lseeki64 2007-09-09 01:32:59 +00:00
m4
macosx stop the torrent update function from creating a mutable string to then place it in another mutable string 2007-09-16 15:51:25 +00:00
misc
mk (trunk) update version to 0.82+ 2007-09-09 17:43:20 +00:00
third-party
wx tweaks 2007-08-24 01:31:26 +00:00
.gitignore this better work 2007-09-16 01:02:06 +00:00
AUTHORS
ChangeLog
LICENSE add copyright info to LICENSE 2007-09-10 03:15:13 +00:00
Makefile.am
NEWS show the priority images in the menu popup for files 2007-09-11 19:23:14 +00:00
README small README change 2007-09-09 19:07:43 +00:00
appcast.xml update appcast url 2007-09-10 12:43:19 +00:00
autogen.sh
configure.ac (trunk) update version to 0.82+ 2007-09-09 17:43:20 +00:00
transmission.spec.in

README

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

Transmission is a free, lightweight BitTorrent client. It features a
simple, intuitive interface on top of an efficient, cross-platform
back-end.

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

For more information (including build instructions), please consult the
website: http://transmission.m0k.org/


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

Transmission has an Xcode project file (Transmission.xcodeproj) that allows it to be built in Xcode.

Building a Transmission release from the command line:

    $ tar xvfz Transmission-80.tar.gz
    $ cd Transmission-0.80
    $ ./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