1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-02 20:43:51 +00:00
No description
Find a file
2009-11-09 05:50:01 +00:00
cli
daemon
doc
gtk (trunk gtk) #1483: support an incomplete directory 2009-11-09 05:29:38 +00:00
libtransmission (trunk libT) #2502: announce own IPv6 address to peers 2009-11-09 05:45:16 +00:00
m4
macosx adjustment to the port checker, including getting rid of an unneeded instance variable of the port; a couple of implicit settings added to the project file 2009-11-08 06:01:29 +00:00
po
qt
third-party
Transmission.xcodeproj Removes request-list.[ch] from Xcode project 2009-11-08 23:47:48 +00:00
web (trunk web) show pieces info in the inspector 2009-10-31 02:19:45 +00:00
.gitignore
AUTHORS
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
ChangeLog
configure.ac (trunk libT) add configure-time checks for pread(), pwrite() for jch's prefetch patch in #2551, "better buffer cache management" 2009-11-09 05:50:01 +00:00
COPYING
Makefile.am
NEWS
README
transmission.spec.in
uncrustify.cfg
update-version-h.sh

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'