Last change
on this file was
12928,
checked in by jordan, 11 years ago
|
#4522 'svn link in README outdated' -- fixed.
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
1.5 KB
|
Line | |
---|
1 | ABOUT |
---|
2 | |
---|
3 | Transmission is a fast, easy, and free BitTorrent client. |
---|
4 | It comes in several flavors: |
---|
5 | |
---|
6 | * A native Mac OS X GUI application |
---|
7 | * GTK+ and Qt GUI applications for Linux, BSD, etc. |
---|
8 | * A headless daemon for servers and routers |
---|
9 | * A web UI for remote controlling any of the above |
---|
10 | |
---|
11 | Visit http://www.transmissionbt.com/ for more information. |
---|
12 | |
---|
13 | BUILDING |
---|
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 | $ xz -d -c transmission-2.11.tar.xz | tar xf - |
---|
24 | $ cd transmission-2.11 |
---|
25 | $ ./configure |
---|
26 | $ make |
---|
27 | $ sudo make install |
---|
28 | |
---|
29 | Building Transmission from the nightly builds: |
---|
30 | |
---|
31 | Download a tarball from http://build.transmissionbt.com/job/trunk-linux-inc/ |
---|
32 | and follow the steps from the previous section. |
---|
33 | |
---|
34 | If you're new to building programs from source code, this is typically |
---|
35 | easier than building from SVN. |
---|
36 | |
---|
37 | Building Transmission from SVN (First Time): |
---|
38 | |
---|
39 | $ svn co svn://svn.transmissionbt.com/Transmission/trunk Transmission |
---|
40 | $ cd Transmission |
---|
41 | $ ./autogen.sh |
---|
42 | $ make |
---|
43 | $ sudo make install |
---|
44 | |
---|
45 | Building Transmission from SVN (Updating): |
---|
46 | |
---|
47 | $ cd Transmission |
---|
48 | $ make clean |
---|
49 | $ svn up |
---|
50 | $ ./update-version-h.sh |
---|
51 | $ make |
---|
52 | $ sudo make install |
---|
53 | |
---|
54 | Notes for building on Solaris' C compiler: User av reports success with |
---|
55 | this invocation: ./configure CC=c99 CXX=CC CFLAGS='-D__EXTENSIONS__ -mt' |
---|
Note: See
TracBrowser
for help on using the repository browser.