1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 11:23:40 +00:00
No description
Find a file
2012-09-06 03:21:03 +00:00
cli
daemon (trunk daemon) Small tweak to r13443 to fix a pluralization issue 2012-08-18 21:53:09 +00:00
extras
gtk (trunk gtk) #4997 "missing semicolon in the desktop file" -- reported & patched by kalev 2012-08-18 15:49:24 +00:00
libtransmission Revert r13468 for now. 2012-09-06 03:21:03 +00:00
m4
macosx Revert r13468 for now. 2012-09-06 03:21:03 +00:00
po (trunk gtk) Sync with Rosetta to update GTK+ translations 2012-07-24 01:00:21 +00:00
qt (trunk, qt) #4760 'transmission-qt breaks unicode characters in the default target dir' -- fixed with patch from rb07 2012-08-19 16:12:20 +00:00
third-party #4891 Solaris 11 compile errors on 2.51 2012-06-12 01:05:19 +00:00
Transmission.xcodeproj Revert r13468 for now. 2012-09-06 03:21:03 +00:00
utils (trunk utils) #4979 "add manget link generator to transmission-show" -- done. 2012-07-23 15:28:27 +00:00
web (trunk web) #4993 "Add Set Location on WebUI" -- use luizpaulo's patch to implement this 2012-08-18 15:46:22 +00:00
.gitignore
AUTHORS
autogen.sh
ChangeLog
configure.ac (trunk, gtk) #4996 'gtk client requires gtk 3.4, but configure.ac only asks for 3.2' -- fixed. 2012-08-18 15:52:38 +00:00
COPYING
Makefile.am
NEWS one more NEWS tweak 2012-07-24 01:25:50 +00:00
README
transmission-gtk.spec.in
uncrustify.cfg
update-version-h.sh

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'