You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
15 lines
361 B
# go to script directory |
|
cd "${0%/*}" || exit |
|
|
|
export PATH="$HOME/.new_local/bin:$PATH" |
|
export LIBRARY_PATH="$HOME/gtk/inst/lib:$LIBRARY_PATH" |
|
|
|
curl -L http://dev-www.libreoffice.org/src/cppunit-1.14.0.tar.gz -o cppunit-1.14.0.tar.gz |
|
tar xzf cppunit-1.14.0.tar.gz |
|
|
|
cd cppunit-1.14.0 || exit |
|
|
|
./autogen.sh |
|
./configure --prefix="$HOME"/gtk/inst |
|
make |
|
make install
|
|
|