Fix correct commit hash for release 0.7.0 of openXC7
[dev-env-setup.git] / tasyagle-install
1 #!/bin/sh
2
3 if [ "$EUID" -ne 0 ]
4 then echo "Please run as root"
5 exit
6 fi
7
8 apt-get install -y quilt tcsh swig libedit-dev tcl8.6-dev \
9 libmotif-dev libxpa1 libxt-dev libxpm-dev \
10 default-jre-headless default-jdk-headless \
11 libncurses5 libedit-dev \
12 libsaxon-java libsaxonb-java libservlet3.1-java fop\
13 # tex-live
14
15 mkdir -p /home/$SUDO_USER/src
16 cd /home/$SUDO_USER/src
17 git clone https://git.libre-soc.org/git/tas-yagle.git
18 cd tas-yagle
19
20 # Specify installation dir
21 installDir="/usr/local" ./build.sh
22
23 cd /home/$SUDO_USER/src
24 chown -R $SUDO_USER .
25 chgrp -R $SUDO_USER .
26
27 STRING="source /usr/local/avt_env.sh"
28 if grep -q "$STRING" /home/$SUDO_USER/.bashrc ; then
29 echo 'avt_env.sh already in .bashrc'
30 else
31 # Default .bashrc usually has a check if shell is
32 # interactive, so adding at the start is a workaround
33 echo 'Adding avt_env.sh to .bashrc'
34 sed -i "1i $STRING" /home/$SUDO_USER/.bashrc
35 chown -R $SUDO_USER /home/$SUDO_USER/.bashrc
36 chgrp -R $SUDO_USER /home/$SUDO_USER/.bashrc
37 fi
38
39
40 # Compile the documentation
41 echo "Entering bash as $SUDO_USER to reload .bashrc and compile docs!"
42 runuser $SUDO_USER -c "/bin/bash << EOF
43 . ~/.bashrc
44 echo $PATH
45 cd /home/$SUDO_USER/src/tas-yagle/distrib/docxml2
46 make
47 EOF"
48
49 echo "Finished tas-yagle compilation, make sure to source .bashrc!"