1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-11 14:43:42 +00:00

Updated for GitHub. Better late than never.

JohnClay 2020-05-12 10:11:14 -04:00
parent b845c8b6d9
commit 614b76c0c4

@ -10,10 +10,10 @@ Source code for official releases can be found on our [download page](https://tr
Automated source code tarballs including the newest code [are now available, too!](https://build.transmissionbt.com/job/trunk-linux/)
If you want to check out the source code yourself from svn, open a terminal window and type:
If you want to check out the source code yourself from GitHub, open a terminal window and type:
```console
$ svn co svn://svn.transmissionbt.com/Transmission/trunk Transmission
$ git clone https://github.com/transmission/transmission.git
```
## On Mac OS X ##
@ -23,7 +23,7 @@ Transmission has an Xcode project file (Transmission.xcodeproj) for building in
* OS X 10.8 SDK
* Xcode 4.4 or newer
Building the project on Mac requires the source to be retrieved from SVN. Pre-packaged source code will not compile.
Building the project on Mac requires the source to be retrieved from GitHub. Pre-packaged source code will not compile.
If building from source is too daunting for you, check out the [nightly builds](https://build.transmissionbt.com/job/trunk-mac/).
(Note: These are untested snapshots. Use them with care.)
@ -125,7 +125,7 @@ If this is your first time compiling on Unix, you'll need a few basic tools:
* gettext 0.14.1 or newer
* intltool 0.40 or newer
If you're planning to build from SVN:
If you're planning to build from source:
* automake 1.9 or newer
* autoconf 2.54 or newer
@ -150,12 +150,12 @@ $ su # if necessary for the next line
$ make install
```
### Building from an SVN snapshot ###
### Building from an GitHub snapshot ###
#### First Time ####
```console
$ svn co svn://svn.transmissionbt.com/Transmission/trunk Transmission
$ git clone https://github.com/transmission/transmission.git
$ cd Transmission
$ ./autogen.sh && make -s
$ su # if necessary for the next line
@ -167,7 +167,7 @@ $ make install
```console
$ cd Transmission
$ make clean
$ svn up
$ git pull
$ make -s
$ su # if necessary for the next line
$ make install