1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 03:12:44 +00:00
No description
Find a file
Mike Gelfand 237acf1726 Rework statistics dialog in Qt client to load from .ui
Fix "Started %n time(s)" phrase (remove space in "time (s)", add proper
English translation for numeric forms).
2014-12-21 13:57:15 +00:00
cli #5828: Initial CMake build system support 2014-12-01 19:55:22 +00:00
cmake Improve cross-compilation support when using CMake 2014-12-20 22:28:43 +00:00
daemon Fix compilation on Windows 2014-12-13 15:22:39 +00:00
extras
gtk #5828: Initial CMake build system support 2014-12-01 19:55:22 +00:00
libtransmission Improve cross-compilation support when using CMake 2014-12-20 22:28:43 +00:00
m4
macosx Yosemite: slight sseparation between pause/resume buttons in the toolbar 2014-10-18 16:41:31 +00:00
po #5828: Initial CMake build system support 2014-12-01 19:55:22 +00:00
qt Rework statistics dialog in Qt client to load from .ui 2014-12-21 13:57:15 +00:00
third-party Make utp_config.h usable with MSVC (#warning directive is not standard) 2014-12-13 10:03:44 +00:00
Transmission.xcodeproj #4400, #5462: Fix Mac build by adding new crypto-utils files to Xcode project. 2014-12-05 23:41:09 +00:00
utils #5828: Initial CMake build system support 2014-12-01 19:55:22 +00:00
web
.gitignore
AUTHORS
autogen.sh
ChangeLog
CMakeLists.txt Improve cross-compilation support when using CMake 2014-12-20 22:28:43 +00:00
configure.ac Don't mess with MinGW printf support for now (tricky) 2014-12-13 16:00:14 +00:00
COPYING
Makefile.am
NEWS
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'