1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-06 19:48:15 +00:00
No description
Find a file
2007-09-25 23:57:29 +00:00
beos
cli
daemon remove the backwards compatability typedefs at BentMyWookie's suggestion. update libT, gtk, daemon, and cli accordingly... 2007-09-20 20:14:13 +00:00
doc
gtk s/transmission-gtk/transmission/ 2007-09-24 19:03:25 +00:00
libtransmission accept erdgeist's suggestion of using ensureMinimumFileSize() only on WIN32 -- on posix, seek+write is enough. 2007-09-25 23:21:00 +00:00
m4
macosx for seeding peers overlay a check mark on progress bar 2007-09-25 21:11:54 +00:00
misc
mk
third-party
Transmission.xcodeproj remove bsdqueue.h from the xcode project 2007-09-25 23:57:29 +00:00
wx get wx building again 2007-09-22 13:36:22 +00:00
.gitignore rename English.lproj to en.lproj as recommended by Apple (I'll do the other languages closer to when they are replaced for 0.9) 2007-09-20 21:57:24 +00:00
appcast.xml update appcast url 2007-09-10 12:43:19 +00:00
AUTHORS
autogen.sh no need for `verbose' mode, and no need to include paths that don't exist 2007-08-16 19:05:25 +00:00
ChangeLog required files 2007-07-18 23:13:30 +00:00
configure.ac
LICENSE add copyright info to LICENSE 2007-09-10 03:15:13 +00:00
Makefile.am
NEWS show the priority images in the menu popup for files 2007-09-11 19:23:14 +00:00
README
transmission.spec.in get mac build compiling again 2007-07-19 01:21:13 +00:00

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

Transmission is a free, lightweight BitTorrent client. It features a
simple, intuitive interface on top of an efficient, cross-platform
back-end.

Transmission runs on Mac OS X (Cocoa interface),
Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface)
and BeOS (native interface).

For more information (including build instructions), please consult the
website: http://transmission.m0k.org/


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

Transmission has an Xcode project file (Transmission.xcodeproj) that allows it to be built in Xcode.

Building a Transmission release from the command line:

    $ tar xvfz Transmission-80.tar.gz
    $ cd Transmission-0.80
    $ ./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