Go to file
Mike Gelfand 4f9d9ad92b Code style change leftovers
For some reason, GTK client wasn't fully processed. All the rest of changes
are mostly in comments.
2017-04-21 10:40:57 +03:00
.tx
Transmission.xcodeproj
cli Align type qualifiers to the right (code style) 2017-04-20 19:53:20 +03:00
cmake Code style change leftovers 2017-04-21 10:40:57 +03:00
daemon Code style change leftovers 2017-04-21 10:40:57 +03:00
dist/msi Fail installation on Windows if UCRT is not installed 2017-02-25 10:07:58 +03:00
extras
gtk Code style change leftovers 2017-04-21 10:40:57 +03:00
libtransmission Code style change leftovers 2017-04-21 10:40:57 +03:00
m4 Work around "error: m4_copy: won't overwrite defined macro: glib_DEFUN" on 2017-03-12 06:20:14 +01:00
macosx Update file icon when its name changes (Mac client) 2017-02-21 23:52:41 +03:00
po Sync .po files with Transifex and current source code 2017-01-27 04:50:14 +03:00
qt Code style change leftovers 2017-04-21 10:40:57 +03:00
third-party
utils Code style change leftovers 2017-04-21 10:40:57 +03:00
web
.gitignore
.gitmodules
.jsbeautifyrc
AUTHORS
CMakeLists.txt
COPYING
ChangeLog
Makefile.am
NEWS
README.md
autogen.sh
configure.ac
transmission-gtk.spec.in
uncrustify.cfg Adjust uncrustify config, reformat all but Mac client 2017-04-20 10:01:22 +03:00
update-version-h.sh

README.md

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 https://transmissionbt.com/ for more information.

Building

Transmission has an Xcode project file (Transmission.xcodeproj) for building in Xcode.

For a more detailed description, and dependencies, visit: https://github.com/transmission/transmission/wiki

Building a Transmission release from the command line

$ tar xf transmission-2.92.tar.xz
$ cd transmission-2.92
$ mkdir build
$ cmake ..
$ make
$ sudo make install

Building Transmission from the nightly builds

Download a tarball from https://build.transmissionbt.com/job/trunk-linux/ 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 Git.

Building Transmission from Git (first time)

$ git clone https://github.com/transmission/transmission Transmission
$ cd Transmission
$ git submodule update --init
$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo make install

Building Transmission from Git (updating)

$ cd Transmission/build
$ make clean
$ git pull --rebase --prune
$ git submodule update
$ cmake ..
$ make
$ sudo make install