2005年09月04日

ユーザ権限でのインストール(CppUnit)


CppUnitをユーザ権限で全部動かしてみようと思います。

CppUnitのインストールを行ってみたいと思います。

次のURLからcppunit-1.10.2.tar.gzをダウンロードします。
http://cppunit.sourceforge.net/cppunit-wiki/FrontPage

次のようにして、インストールします。
tar zxvf cppunit-1.10.2.tar.gz
cd cppunit-1.10.2
./configure --prefix=/home/ikepon.jp/cppunit
ls
gmake
gmake test
gmake install

次のディレクトリにcppunitがインストールされていれば成功です。

/home/ikepon.jp/mt3/cppunit

最終的に、インストールするためのスクリプトは次のようになります。
install_cppunit.sh

#!/bin/sh

BUILD_HOME=`pwd`

cd ${BUILD_HOME}
tar zxvf cppunit-1.10.2.tar.gz
cd cppunit-1.10.2
./configure --prefix=/home/ikepon.jp/cppunit
ls
gmake
gmake test
gmake install
 

Comment on "ユーザ権限でのインストール(CppUnit)"

"ユーザ権限でのインストール(CppUnit)"へのコメントはまだありません。