1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-02 12:32:54 +00:00
No description
Find a file
2007-10-24 16:00:51 +00:00
beos
cli remove dead code (TR_STATUS_ACTIVE, TR_STATUS_INACTIVE) 2007-10-20 22:07:21 +00:00
daemon remove dead code (TR_STATUS_ACTIVE, TR_STATUS_INACTIVE) 2007-10-20 22:07:21 +00:00
doc small typo fixes 2007-10-13 17:39:15 +00:00
gtk trying to get "make distcheck" to work right 2007-10-24 15:25:43 +00:00
icon updated icon from AR 2007-10-23 11:22:57 +00:00
libtransmission rewind this morning's changes. 2007-10-23 20:42:00 +00:00
m4 * add intltool macros to make it easier to build from svn. 2007-10-09 02:49:24 +00:00
macosx trunk: update mac makefile 2007-10-24 16:00:51 +00:00
misc
mk trunk: update version to 0.90+ 2007-10-24 12:59:52 +00:00
po initial checkin of gtk i18n changelog 2007-10-24 01:32:20 +00:00
third-party add a NULL "install:" target for third-party libraries so they don't get forced on other programs via "make install" 2007-10-08 15:54:07 +00:00
Transmission.xcodeproj add missing localized string 2007-10-24 13:10:59 +00:00
wx remove unused flags 2007-10-15 20:58:39 +00:00
.gitignore make the gtk translation files play nicely with autoconf 2007-10-08 15:37:33 +00:00
appcast.xml eliminate old releases from appcast 2007-10-24 03:46:05 +00:00
AUTHORS trunk: Add Dutch Sparkle localization and update news for news/authors localization 2007-10-24 15:19:57 +00:00
autogen.sh make the gtk translation files play nicely with autoconf 2007-10-08 15:37:33 +00:00
ChangeLog
configure.ac trying to get "make distcheck" to work right 2007-10-24 15:25:43 +00:00
LICENSE add copyright info to LICENSE 2007-09-10 03:15:13 +00:00
Makefile.am fix the `transmission.desktop' errors reported by jinzo and Lacrocivious 2007-10-09 18:28:14 +00:00
NEWS trunk: Add Dutch Sparkle localization and update news for news/authors localization 2007-10-24 15:19:57 +00:00
README updated readme 2007-10-24 04:13:07 +00:00
transmission.spec.in janitorial work for the freeze: (1) finish replacing "transmission-gtk" with "transmission". (2) add Charles to authors lists in man pages. (3) standardize the summary as "A fast and easy BitTorrent client" in the rpm spec, gtk about dialog, and man pages. (4) fold together similar translation strings in the gtk client. (5) use g_strerror instead of strerror in the gtk client. 2007-10-13 17:33:53 +00:00

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://transmission.m0k.org/ 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 xvfz transmission-0.90.tar.gz
    $ cd transmission-0.90
    $ ./autogen.sh
    $ ./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