Go to file
Mitchell Livingston 0a656a1375 #4987 (web ui) up/down characters are not rendered correctly 2012-08-07 00:14:04 +00:00
Transmission.xcodeproj bump our sdk to 10.8 2012-07-25 12:44:20 +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 (trunk, gtk) use GtkApplication and GtkApplicationWindow 2012-07-14 22:44:41 +00:00
libtransmission (trunk utils) #4979 "add manget link generator to transmission-show" -- done. 2012-07-23 15:28:27 +00:00
m4 remove unused m4 macros, as pointed out by stdisease 2009-06-03 15:22:09 +00:00
macosx missed a line 2012-08-06 04:02:18 +00:00
po (trunk gtk) Sync with Rosetta to update GTK+ translations 2012-07-24 01:00:21 +00:00
qt (trunk qt) #4980 "Resize headers in Files Tab in Torrent Properties Window" -- patch from samkpo 2012-07-22 17:01:52 +00:00
third-party #4891 Solaris 11 compile errors on 2.51 2012-06-12 01:05:19 +00:00
utils (trunk utils) #4979 "add manget link generator to transmission-show" -- done. 2012-07-23 15:28:27 +00:00
web #4987 (web ui) up/down characters are not rendered correctly 2012-08-07 00:14:04 +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'