mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
No description
23d61b6457
This file was originally written by Richard Hughes, for Fedora, who proposed it on the Transmission forum here: https://forum.transmissionbt.com/viewtopic.php?f=3&t=16443 It's used to display a nice description and screenshot in GNOME Software. The format is documented here: https://www.freedesktop.org/software/appstream/docs/chap-Quickstart.html The <_name/> and <_summary/> fields match the Name= and Comment= fields in the .desktop file so are already translated. The screenshot is taken with Transmission 2.92 (14714) on Fedora 25. It's at one of the sizes recommended by the GNOME Shell Screenshot Window Sizer extension. The <update_contact/> is based on the Git history. |
||
---|---|---|
.tx | ||
cli | ||
cmake | ||
daemon | ||
dist/msi | ||
extras | ||
gtk | ||
libtransmission | ||
m4 | ||
macosx | ||
po | ||
qt | ||
third-party | ||
Transmission.xcodeproj | ||
utils | ||
web | ||
.gitignore | ||
.gitmodules | ||
.jsbeautifyrc | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
CMakeLists.txt | ||
configure.ac | ||
COPYING | ||
Makefile.am | ||
NEWS | ||
README.md | ||
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 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