feat(tasyagle-install): Added flex removal, running example (which fails)
[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 groff # tex-live
14
15 # Make sure to use the flex included with tasyagle
16 apt-get remove flex
17
18 mkdir -p /home/$SUDO_USER/src
19 cd /home/$SUDO_USER/src
20 git clone https://git.libre-soc.org/git/tas-yagle.git
21 cd tas-yagle
22
23 # Specify installation dir
24 installDir="/usr/local" ./build.sh
25
26 cd /home/$SUDO_USER/src
27 chown -R $SUDO_USER .
28 chgrp -R $SUDO_USER .
29
30 STRING="source /usr/local/avt_env.sh"
31 if grep -q "$STRING" /home/$SUDO_USER/.bashrc ; then
32 echo 'avt_env.sh already in .bashrc'
33 else
34 # Default .bashrc usually has a check if shell is
35 # interactive, so adding at the start is a workaround
36 echo 'Adding avt_env.sh to .bashrc'
37 sed -i "1i $STRING" /home/$SUDO_USER/.bashrc
38 chown -R $SUDO_USER /home/$SUDO_USER/.bashrc
39 chgrp -R $SUDO_USER /home/$SUDO_USER/.bashrc
40 fi
41
42 # Compile the documentation and example
43 echo "Entering bash as $SUDO_USER to reload .bashrc and compile docs!"
44 runuser $SUDO_USER -c "/bin/bash << EOF
45 . ~/.bashrc
46 cd /home/$SUDO_USER/src/tas-yagle/distrib/docxml2
47 make
48 cd /home/$SUDO_USER/src/tas-yagle/distrib/share/tutorials/hitas/inv
49 ./db.tcl
50 EOF"
51
52 echo "Finished tas-yagle compilation, make sure to source .bashrc!"