1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-07 23:14:41 +00:00
No description
Find a file
2008-09-14 21:39:16 +00:00
beos
cli (win32) There is no SIGHUP 2008-09-05 15:13:06 +00:00
daemon (win32) Rename rpc.[ch] to rpcimpl.[ch] 2008-09-05 14:31:58 +00:00
doc
gtk (gtk) make the per-torrent speed limit gui controls' behavior match that of the preference dialgo's speed limit gui controls 2008-09-14 19:39:07 +00:00
libtransmission (libT) #1269: check for the `downloaded' key in the announce repsonse. a successful announce response already resets the rescrape countdown, so that half of the ticket is redundant. 2008-09-14 00:57:11 +00:00
m4 #450: OpenSSL in FreeBSD basesystem doesn't have openssl.pc 2008-09-03 19:02:59 +00:00
macosx Sparkle 1.5 requires signing of the update 2008-09-14 21:39:16 +00:00
misc
po (gtk) #989: add a checkbox to auto-update the blocklist once a week 2008-09-02 20:59:00 +00:00
third-party (win32) Conditionally build shttpd win32 code 2008-09-05 14:32:24 +00:00
Transmission.xcodeproj Sparkle 1.5 requires signing of the update 2008-09-14 21:39:16 +00:00
web #1252 - Extranious semi-colon 2008-09-03 03:58:18 +00:00
wx
.gitignore
AUTHORS
autogen.sh
ChangeLog
configure.ac (win32) Add application icon as a resource 2008-09-06 04:31:08 +00:00
COPYING
Makefile.am (win32) Don't build daemon on win32 yet 2008-09-05 15:13:03 +00:00
NEWS
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