Go to file
Charles Kerr 2c59589c6c * When loading a torrent, warn if no announce URLs are found.
* When possible, use the torrent name in metainfo warning messages.
2008-05-29 00:38:31 +00:00
Transmission.xcodeproj allow creation of torrents with no announce address 2008-05-28 23:57:25 +00:00
beos
cli
daemon
doc
gtk (gtk) silence console warning when starting a second transmission session 2008-05-28 15:05:17 +00:00
libtransmission * When loading a torrent, warn if no announce URLs are found. 2008-05-29 00:38:31 +00:00
m4
macosx fix typo on Tiger 2008-05-29 00:19:28 +00:00
misc
po
third-party
wx
.gitignore
AUTHORS
ChangeLog
LICENSE
Makefile.am
NEWS show a warning when create a torrent file with a blank address 2008-05-29 00:18:10 +00:00
README
appcast.xml
autogen.sh autogen.sh cleanups by Triskelios 2008-05-27 21:49:09 +00:00
configure.ac
transmission.spec.in

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