mirror of https://gitlab.com/QEF/q-e.git
43 lines
581 B
Bash
Executable File
43 lines
581 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
#
|
|
# create a $PWGUI/lib directory if it doesn't exist
|
|
#
|
|
here=$(pwd)
|
|
if [ ! -d lib ]; then
|
|
mkdir lib
|
|
fi
|
|
|
|
if [ -d lib/Guib-* ]; then
|
|
rm -rf lib/Guib-*
|
|
fi
|
|
|
|
|
|
#
|
|
# create a complete Guib archive out of SVN + plus add the TclTkLib
|
|
#
|
|
cd ..
|
|
if [ -d Guib ]; then
|
|
echo "
|
|
*** WARNING ***
|
|
|
|
the directory ../Guib exists, cannot proceed due to security reasons !!!
|
|
|
|
*** STOPPING ...
|
|
|
|
"
|
|
exit 1
|
|
fi
|
|
|
|
svn co Guib >& /dev/null
|
|
cd Guib
|
|
guib_root=$(pwd)
|
|
version=$(cat VERSION)
|
|
make clean
|
|
make
|
|
|
|
cd $here/lib
|
|
tar zxvf $guib_root/guib-$version.tgz
|
|
rm -rf $guib_root
|
|
exit 0 |