Go to file
Mitchell Livingston 8ffc410e83 remove the already-removed choking.h reference from the xcode project 2007-09-20 20:47:02 +00:00
Transmission.xcodeproj remove the already-removed choking.h reference from the xcode project 2007-09-20 20:47:02 +00:00
beos Oops, remove extra paren. 2007-08-05 04:04:04 +00:00
cli remove the backwards compatability typedefs at BentMyWookie's suggestion. update libT, gtk, daemon, and cli accordingly... 2007-09-20 20:14:13 +00:00
daemon remove the backwards compatability typedefs at BentMyWookie's suggestion. update libT, gtk, daemon, and cli accordingly... 2007-09-20 20:14:13 +00:00
doc merge encryption branch to trunk (xcode project is still out of date) 2007-09-20 16:32:01 +00:00
gtk remove the backwards compatability typedefs at BentMyWookie's suggestion. update libT, gtk, daemon, and cli accordingly... 2007-09-20 20:14:13 +00:00
libtransmission remove the backwards compatability typedefs at BentMyWookie's suggestion. update libT, gtk, daemon, and cli accordingly... 2007-09-20 20:14:13 +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 fix binding error that would cause the preferences window to not load 2007-09-20 20:35:06 +00:00
misc Doc update. 2007-08-16 04:22:34 +00:00
mk fix version.sh 2007-09-20 16:37:11 +00:00
third-party get xcode project building again 2007-09-20 20:24:33 +00:00
wx sync the wx prototype with the new libtransmission class names 2007-09-20 19:47:19 +00:00
.gitignore this better work 2007-09-16 01:02:06 +00:00
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 required files 2007-07-18 23:13:30 +00:00
LICENSE add copyright info to LICENSE 2007-09-10 03:15:13 +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 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 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 (trunk) update version to 0.82+ 2007-09-09 17:43:20 +00:00
transmission.spec.in get mac build compiling again 2007-07-19 01:21:13 +00:00

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