Go to file
Mitchell Livingston c4ac8eeb71 when creating a torrent, changing the torrent file location will give an explanation in the save panel; localized the Select button in the save panel; set the location as the torrent file's currently set location 2007-11-17 18:54:07 +00:00
Transmission.xcodeproj work with last commit 2007-11-17 16:52:56 +00:00
beos Oops, remove extra paren. 2007-08-05 04:04:04 +00:00
cli tiennou's fix for #461 2007-11-12 15:15:51 +00:00
daemon remove libtransmission code that duplicates functionality in libevent 2007-11-06 21:14:30 +00:00
doc Add IPC messages to set and retrieve the encryption mode. 2007-10-26 03:43:27 +00:00
gtk undo previous commit 2007-11-17 07:29:44 +00:00
icon updated icon from AR 2007-10-23 11:22:57 +00:00
libtransmission fix timeout error that caused us to drop connections prematurely 2007-11-17 17:49:30 +00:00
m4 * add intltool macros to make it easier to build from svn. 2007-10-09 02:49:24 +00:00
macosx when creating a torrent, changing the torrent file location will give an explanation in the save panel; localized the Select button in the save panel; set the location as the torrent file's currently set location 2007-11-17 18:54:07 +00:00
misc
po Added po/POTFILES.skip to denote that the wx client doesn't need to be translated. 2007-10-28 20:04:06 +00:00
third-party these didn't need to be checked in. 2007-11-09 17:54:01 +00:00
wx use Thomas Bernard's miniupnp library instead of rolling our own. 2007-11-06 16:02:50 +00:00
.gitignore
AUTHORS
ChangeLog
LICENSE
Makefile.am
NEWS
README
appcast.xml
autogen.sh
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://transmission.m0k.org/ 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