forked from URDME/urdme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activate_local_installation.sh
executable file
·55 lines (52 loc) · 1.92 KB
/
activate_local_installation.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
####################################################
DEFAULT=`pwd`"/urdme"
####################################################
if [ ! -d $DEFAULT ]; then
echo "Error: $DEFAULT not found, exiting"
exit
fi
####################################################
echo "This script will activated $DEFAULT as the current URDME installation on this computer."
echo "Press return to continue, or ^C (ctrl + c) to EXIT"
read -s
####################################################
URDME_ROOT=$DEFAULT
####################################################
HAS_MATLAB=`which matlab`
if [ "$HAS_MATLAB" = "" ]; then
echo "ERROR: Matlab executable not found in your PATH"
exit
fi
####################################################
echo -n "URDME version: "
VER=`./urdme/bin/urdme_init -v`
echo $VER
###
echo -n "Matlab: "
echo `./urdme/bin/urdme_init -m`
###
echo -n "Matlab Arch: "
echo `./urdme/bin/urdme_init -a`
####################################################
echo "URDME installation destination: $URDME_ROOT"
echo "To specify a different use the 'install.sh' script'"
####################################################
####################################################
####################################################
echo "Press return to continue with installation, or ^C (ctrl + c) to EXIT"
read -s
####################################################
if [ ! -d /usr/local/bin ]; then
mkdir -p /usr/local/bin
fi
rm -f /usr/local/bin/urdme_init
ln -s "$URDME_ROOT/bin/urdme_init" /usr/local/bin
####################################################
echo "Press return to have the install scripts add the URDME folders to the Matlab path, or ^C (ctrl + c) to EXIT"
read -s
####################################################
./set_matlab_path.pl $URDME_ROOT > /dev/null
####################################################
echo "Local URDME installation activated"
####################################################