Go to file
Mitchell Livingston 7a4669a371 get rid of redundant trivial call 2007-09-08 12:32:51 +00:00
Transmission.xcodeproj get building again 2007-08-31 12:14:08 +00:00
beos Oops, remove extra paren. 2007-08-05 04:04:04 +00:00
cli improve cli-driven torrent creation. (Danez, #309 & #310 2007-08-19 02:02:38 +00:00
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 modify name in GTK desktop file to follow Linux usability guidelines. 2007-08-21 15:29:43 +00:00
libtransmission (trunk) fix a nasty width truncation bug, reported by Eric in http://transmission.m0k.org/forum/viewtopic.php?t=2304&start=16 2007-09-06 16:28:24 +00:00
m4 Add pkg.m4 for PKG_CHECK_MODULES in case the platform doesn't have pkg-config installed 2007-08-16 15:54:23 +00:00
macosx get rid of redundant trivial call 2007-09-08 12:32:51 +00:00
misc Doc update. 2007-08-16 04:22:34 +00:00
mk get the version number to be 0.81+ finally 2007-09-01 05:51:34 +00:00
third-party get mac version building again 2007-08-15 03:12:54 +00:00
wx tweaks 2007-08-24 01:31:26 +00:00
.gitignore
AUTHORS added mirek's slovakian translation. added mirek, Niels Provos, and TooMuchTime to the `thanks' sectio of AUTHORS 2007-08-18 18:33:47 +00:00
ChangeLog
LICENSE grammar and comment ;) 2007-07-29 15:02:42 +00:00
Makefile.am More autoconf work. Added instructions on building Transmission to README. autoconf might work out-of-the-box on OS X now. 2007-08-16 15:20:11 +00:00
NEWS get the version number to be 0.81+ finally 2007-09-01 05:51:34 +00:00
README Explain which steps can be skipped during an SVN up 2007-08-20 02:41:32 +00:00
appcast.xml update appcast 2007-08-23 23:31:23 +00:00
autogen.sh no need for `verbose' mode, and no need to include paths that don't exist 2007-08-16 19:05:25 +00:00
configure.ac update version info 2007-08-24 17:44:53 +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 xcode files 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