Salome HOME
e391ac699f668d06609b8591f5b5cdea6dc3b742
[modules/yacs.git] / src / wrappergen / bin / Cpp_Template__SRC / archive
1 #! /bin/bash
2 # Copyright (C) 2006-2023  CEA, EDF
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 #
22 DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
23 cd ${DIR}
24 DIR=`pwd`
25
26 REP=`basename $DIR`
27
28 if [ -z "$USER" ]
29 then
30     USER=`whoami 2> /dev/null` || true
31 fi
32
33 mkdir -p /tmp/${USER}
34 \rm -rf /tmp/${USER}/${REP}
35
36 cd ${DIR}/..
37 cp -drf ${REP} /tmp/${USER}/${REP}
38
39 cd /tmp/${USER}/${REP}
40 ./root_clean
41 find . -name "CVS" -depth -exec \rm -rf {} \;
42 find . -type f -exec chmod u+rw {} \;
43
44 cd /tmp/${USER}
45
46 TAR_FILE=${REP}`date +_%d.%m.%Y_%H.%M`.tgz
47
48 tar cvfz ${TAR_FILE} ${REP}
49
50 cp ${TAR_FILE} ${DIR}/..
51
52 \rm -rf /tmp/${USER}/${REP} ${TAR_FILE}