1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-03 21:12:05 +00:00
No description
Find a file
2008-06-19 03:23:50 +00:00
beos
cli (cli) #938 - transmissioncli won't scrape 2008-06-12 02:11:54 +00:00
daemon senseless RPC changes 2008-06-18 22:01:15 +00:00
doc senseless RPC changes 2008-06-18 22:01:15 +00:00
gtk (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
libtransmission minor bencode cleanup: (1) remove unused BENC_NULL (2) make tr_bencInit() a private static function in bencode.c 2008-06-19 02:53:57 +00:00
m4
macosx start removal of NSCalendarDate, as recommended by Apple in the 10.5 docs 2008-06-19 03:23:50 +00:00
misc
po (gtk) update the translations in trunk from launchpad. 2008-06-13 16:35:46 +00:00
third-party #1007: check_auth space delimiter bug 2008-06-09 23:28:14 +00:00
Transmission.xcodeproj dim text fields in the prefs window when they correspond to disabled fields 2008-06-17 21:09:06 +00:00
wx
.gitignore
appcast.xml (trunk) sometimes, not always 2008-06-13 22:03:34 +00:00
AUTHORS update email addresses; make links clickable in the Mac about box 2008-06-09 04:26:53 +00:00
autogen.sh
ChangeLog
configure.ac (RPC) add utility arguments for torrent-info: sort by (activity|age|id|name|progress|ratio|state|tracker), filter by (active|all|downloading|paused|seeding) 2008-06-16 22:11:50 +00:00
LICENSE
Makefile.am
NEWS update NEWS; small changes that happen to be on my local copy 2008-06-15 04:57:41 +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