2007年10月12日金曜日

さくらサーバーにSubversion

APRをインストール

% wget http://ftp.kddilabs.jp/infosystems/apache/apr/apr-1.2.8.tar.gz
% tar xfvz apr-1.2.8.tar.gz 
% cd apr-1.2.8
% ./configure --prefix=$HOME/local
% make
% make install


APR ユーティリティをインストール

cd $HOME/local/src
wget http://ftp.kddilabs.jp/infosystems/apache/apr/apr-util-1.2.7.tar.gz
tar zxvf apr-util-1.2.7.tar.gz
cd ./apr-util-1.2.7
./configure --prefix=$HOME/local --with-apr=$HOME/local --with-expat=/usr/local --with-iconv=/usr/local --disable-static
make
make install

subversion のインストール

% wget http://subversion.tigris.org/downloads/subversion-1.4.3.tar.gz
% tar xfvz subversion-1.4.3.tar.gz
% cd subversion-1.4.3
% ./configure --prefix=$HOME/local --with-apr=$HOME/local --with-apr-util=$HOME/local
% make
% make install

0 件のコメント: