1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 11:23:40 +00:00
No description
Find a file
2008-08-01 00:24:33 +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 #1126: crash on quit 2008-07-31 13:06:59 +00:00
m4
macosx update "remote" help 2008-08-01 00:24:33 +00:00
misc
po (gtk) synchronize translations for 1.30b3 2008-07-29 04:33:07 +00:00
third-party
Transmission.xcodeproj transmission-remote should compile in xcode 2008-07-30 03:20:45 +00:00
web Removing Extranious PHP from index file and Javascript. Add Conditional CSS links to iphone css. 2008-07-30 00:13:51 +00:00
wx
.gitignore
appcast.xml
AUTHORS
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