Go to file
Charles Kerr c2d93776be (trunk) #2553: autogen failure: "aclocal: couldn't open directory `m4': No such file or directory" 2009-11-04 03:14:35 +00:00
Transmission.xcodeproj
cli (trunk) silence manpage warnings reported by lintian and recorded at http://lintian.debian.org/full/costela@debian.org.html#transmission 2009-09-15 14:11:46 +00:00
daemon
doc (trunk) #1483: move completed torrents to a user-specified directory 2009-10-19 05:25:50 +00:00
gtk (trunk daemon) yet another commit for #2119 "daemon should reload settings.json on SIGHUP 2009-10-29 23:18:53 +00:00
libtransmission more typo fixes 2009-11-04 02:45:58 +00:00
m4
macosx use a 10.6-method for displaying the per-torrent action menu 2009-11-04 03:00:49 +00:00
po make hudson-t happy 2009-10-19 05:12:28 +00:00
qt
third-party
web
.gitignore
AUTHORS
COPYING
ChangeLog
Makefile.am
NEWS
README
autogen.sh (trunk) #2553: autogen failure: "aclocal: couldn't open directory `m4': No such file or directory" 2009-11-04 03:14:35 +00:00
configure.ac
transmission.spec.in
uncrustify.cfg
update-version-h.sh

README

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

Transmission is a fast, easy, and free BitTorrent client.

It runs on Mac OS X (Cocoa interface) and
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ and Qt interfaces).

Visit http://www.transmissionbt.com/ for more information.


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

Transmission has an Xcode project file (Transmission.xcodeproj)
for building in Xcode.

For a more detailed description, and dependancies, visit:
http://trac.transmissionbt.com/wiki/

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.40.tar.bz2
    $ cd transmission-1.40
    $ ./configure -q && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from the nightly builds:

    Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/
    and follow the steps from the previous section.

    If you're new to building programs from source code, this is typically 
    easier than building from SVN.

Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ ./update-version-h.sh 
    $ make -s
    $ su (if necessary for the next line)
    $ make install



Notes for building on Solaris' C compiler:  User av reports success with
this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt'