1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-10 14:13:23 +00:00
No description
Find a file
2008-11-16 08:56:18 +00:00
beos
cli #1406: need tr_getDefaultDownloadDir() for consistency between apps 2008-11-15 17:39:54 +00:00
daemon #1406: need tr_getDefaultDownloadDir() for consistency between apps 2008-11-15 17:39:54 +00:00
doc
gtk (gtk) #996: the Gnome HIG requires the statusbar to be at the bottom of the main window. 2008-11-16 07:26:35 +00:00
libtransmission (libT) #1474: lazy bitfields don't work quite right in 1.40 2008-11-16 08:56:18 +00:00
m4 undo r7104, based on negative feedback from Lacrocivous 2008-11-13 03:58:54 +00:00
macosx trivial cleanups 2008-11-15 19:47:57 +00:00
misc
po
third-party
Transmission.xcodeproj
web
wx
.gitignore
AUTHORS
autogen.sh
ChangeLog
configure.ac if a user doesn't specify --enable-wx or --disable-wx, then assumne --disable-wx 2008-11-13 04:20:18 +00:00
COPYING
Makefile.am
NEWS get ready for 1.40 2008-11-09 21:40:12 +00:00
README
transmission.spec.in
uncrustify.cfg

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