From 614b76c0c4271c82f8e17d04c983c197501798c2 Mon Sep 17 00:00:00 2001 From: JohnClay Date: Tue, 12 May 2020 10:11:14 -0400 Subject: [PATCH] Updated for GitHub. Better late than never. --- Building-Transmission.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Building-Transmission.md b/Building-Transmission.md index 9d1779b..0c6e180 100644 --- a/Building-Transmission.md +++ b/Building-Transmission.md @@ -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