1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-13 23:48:49 +00:00
No description
Find a file
2009-06-04 20:28:10 +00:00
beos (libt) more janitorial work on cleaning up tr_session*() and tr_torrent*() functions: session stats, torrent count, and manual update. 2008-05-22 20:44:41 +00:00
cli (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
daemon (1.5x) backport r8358, 8359 to 1.5x/ branch for 1.53 2009-05-11 17:45:00 +00:00
doc (1.5x doc) tweak the RPC spec as suggested by chorlya 2009-02-10 18:19:43 +00:00
gtk backports for 1.54. 2009-05-20 21:05:48 +00:00
libtransmission Missing include, fixes OS X build 2009-06-04 08:47:20 +00:00
m4 (1.5x) #1700: A bug in check-openssl.m4 for not teach Makefile about OPENSSL_*. 2009-01-16 18:03:50 +00:00
macosx (1.5x) update news and bump version to 1.54 2009-06-04 20:28:10 +00:00
misc
po (gtk 1.5x) updated translations for 1.52 2009-04-13 01:51:52 +00:00
third-party (trunk libnatpmp) upgrade to new version 2009-03-11 13:04:04 +00:00
Transmission.xcodeproj (1.5x) update project file 2009-02-11 00:55:32 +00:00
web backports for 1.54. 2009-05-20 21:05:48 +00:00
wx (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
.gitignore change "English" to "en" 2008-06-30 18:17:40 +00:00
AUTHORS (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
autogen.sh autogen.sh cleanups by Triskelios 2008-05-27 21:49:09 +00:00
ChangeLog
configure.ac (1.5x) update news and bump version to 1.54 2009-06-04 20:28:10 +00:00
COPYING (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
Makefile.am backports for 1.54. 2009-05-20 21:05:48 +00:00
NEWS (1.5x) update news and bump version to 1.54 2009-06-04 20:28:10 +00:00
README (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
transmission.spec.in (1.5x) updates from trunk: all of build system & libtransmission; bugfixes in daemon, cli, and gtk; sync tr_sessionInit() changes. NOTE: mac end needs to add request-list.[ch] to its libtransmissio rules 2009-01-11 17:46:51 +00:00
uncrustify.cfg run libT, cli, daemon, gtk through the source-code formatter "uncrustify" as promised/threatened 2008-09-23 19:11:04 +00:00

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

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

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

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


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

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

For a more detailed description, and dependancies, visit:
http://trac.transmissionbt.com/wiki/

Building a Transmission release from the command line:

    $ tar xvfj transmission-1.40.tar.bz2
    $ cd transmission-1.40
    $ ./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 && make -s
    $ su (if necessary for the next line)
    $ make install

Building Transmission from SVN (Updating):

    $ cd Transmission
    $ make clean
    $ svn up
    $ make -s
    $ su (if necessary for the next line)
    $ make install