Go to file
Mitchell Livingston 6fe0774147 don't use the convenient accessor functionality in the Quick Look plugin 2012-08-12 14:05:55 +00:00
Transmission.xcodeproj #4998 Support Quick Look of .torrent files in the Finder 2012-08-12 12:11:33 +00:00
cli
daemon (trunk daemon) #4947 "Expanded info not in transmission-remote manpage, only in --help" -- fixed. 2012-07-01 04:21:22 +00:00
extras
gtk
libtransmission
m4
macosx don't use the convenient accessor functionality in the Quick Look plugin 2012-08-12 14:05:55 +00:00
po (trunk gtk) Sync with Rosetta to update GTK+ translations 2012-07-24 01:00:21 +00:00
qt
third-party #4891 Solaris 11 compile errors on 2.51 2012-06-12 01:05:19 +00:00
utils
web #5007 Web client attempts to post notifications without permission, causing transfers not to update 2012-08-07 23:00:10 +00:00
.gitignore
AUTHORS
COPYING
ChangeLog
Makefile.am
NEWS one more NEWS tweak 2012-07-24 01:25:50 +00:00
README
autogen.sh
configure.ac update to 2.61+ 2012-07-24 02:29:53 +00:00
transmission-gtk.spec.in
uncrustify.cfg
update-version-h.sh

README

ABOUT

  Transmission is a fast, easy, and free BitTorrent client.
  It comes in several flavors:

    * A native Mac OS X GUI application
    * GTK+ and Qt GUI applications for Linux, BSD, etc.
    * A headless daemon for servers and routers
    * A web UI for remote controlling any of the above

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

BUILDING

  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:

    $ xz -d -c transmission-2.11.tar.xz | tar xf -
    $ cd transmission-2.11
    $ ./configure
    $ make
    $ sudo 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.transmissionbt.com/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ make
    $ sudo make install

  Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ ./update-version-h.sh 
    $ make
    $ sudo 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'