1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 17:47:37 +00:00
No description
Find a file
2008-07-29 00:51:07 +00:00
beos
cli * fix minor error in the rpc spec's examples 2008-07-27 14:31:18 +00:00
daemon (daemon) fix typo in daemon's help page. 2008-07-27 19:04:29 +00:00
doc * fix minor error in the rpc spec's examples 2008-07-27 14:31:18 +00:00
gtk (gtk) fix build breakage by including <locale.h> explicitly 2008-07-28 22:06:53 +00:00
libtransmission #1122: faster http processing 2008-07-29 00:51:07 +00:00
m4
macosx the "Cancel" button in the blocklist download sheet resizes to fit the localized string 2008-07-28 00:49:15 +00:00
misc
po (gtk) update translations from Launchpad for the 1.30b2 release 2008-07-24 23:20:03 +00:00
third-party
Transmission.xcodeproj new Turkish localization 2008-07-25 04:07:14 +00:00
web (rpc) to lower the bandwidth/cpu used up by very large torrent lists, allow finer-grained control over which fields to return in the `torrent-get' request. 2008-07-26 14:47:07 +00:00
wx
.gitignore
appcast.xml
AUTHORS new Turkish localization 2008-07-25 04:07:14 +00:00
autogen.sh
ChangeLog
configure.ac #1122: faster http processing 2008-07-29 00:51:07 +00:00
COPYING
Makefile.am
NEWS Russian localization 2008-07-27 23:47:11 +00:00
README
transmission.spec.in

README for Transmission
=======================

Transmission is a fast, easy, and free BitTorrent client.

It runs on Mac OS X (Cocoa interface),
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface)
and BeOS (native interface).

Visit http://www.transmissionbt.com/ for more information.


Building Transmission
=====================

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

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.0.tar.bz2
    $ cd transmission-1.0
    $ ./configure -q && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (First Time):

    $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
    $ cd Transmission
    $ ./autogen.sh
    $ ./configure -q && make -s

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ svn up
    $ make -s