The steps for installing subversion in Linux Source Code are as follows:
- ./Configure-- Configuration
- Make-- Compile
- Make install-- Install
When installing subverion, pay special attention to many small details. Next we will install a subversion on Linux by step.
- download the source code package and dependent files
- subversion source package: http://subversion.tigris.org/downloads/subversion-1.6.0.tar.gz
- subversion installation dependency file: http://subversion.tigris.org/downloads/subversion-deps-1.6.0.tar.gz
- extract
- tar-zxvf subversion-1.6.0.tar.gz
- tar-zxvf subversion-deps-1.6.0.tar.gz
- decompressed files are stored in the subversion-1.6.0 directory, including the dependent subdirectories Apr, APR-util, and SQLite-amalgamation.
- ./configure
- -- prefix Configure the installation path, for example, -- prefix =/home/Bosco/local/subversion
- -- With-SSL enable SSL to access https: // This type of SVN address can also specify an SSL directory, such as -- With-SSL =/home/Bosco/local/OpenSSL
- compile and install
make & make install