home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / transmission-common / README < prev   
Encoding:
Text File  |  2009-02-26  |  1.1 KB  |  45 lines

  1. README for Transmission
  2. =======================
  3.  
  4. Transmission is a fast, easy, and free BitTorrent client.
  5.  
  6. It runs on Mac OS X (Cocoa interface) and
  7. Linux/NetBSD/FreeBSD/OpenBSD (GTK+ interface).
  8.  
  9. Visit http://www.transmissionbt.com/ for more information.
  10.  
  11.  
  12. Building Transmission
  13. =====================
  14.  
  15. Transmission has an Xcode project file (Transmission.xcodeproj)
  16. for building in Xcode.
  17.  
  18. For a more detailed description, and dependancies, visit:
  19. http://trac.transmissionbt.com/wiki/
  20.  
  21. Building a Transmission release from the command line:
  22.  
  23.     $ tar xvfj transmission-1.40.tar.bz2
  24.     $ cd transmission-1.40
  25.     $ ./configure -q && make -s
  26.     $ su (if necessary for the next line)
  27.     $ make install
  28.  
  29. Building Transmission from SVN (First Time):
  30.  
  31.     $ svn co svn://svn.m0k.org/Transmission/trunk Transmission
  32.     $ cd Transmission
  33.     $ ./autogen.sh && make -s
  34.     $ su (if necessary for the next line)
  35.     $ make install
  36.  
  37. Building Transmission from SVN (Updating):
  38.  
  39.     $ cd Transmission
  40.     $ make clean
  41.     $ svn up
  42.     $ make -s
  43.     $ su (if necessary for the next line)
  44.     $ make install
  45.