forked from URDME/urdme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·75 lines (72 loc) · 2.39 KB
/
install.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
####################################################
DEFAULT="/usr/local/urdme"
if [ "$1" == "" ]; then
URDME_ROOT=$DEFAULT
else
URDME_ROOT=$1
fi
####################################################
# if $1 is "PREFIX=/blah/blah/"
####################################################
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
DEFAULT=$DEFAULT"-"$VER
###
echo -n "Matlab: "
echo `./urdme/bin/urdme_init -m`
###
echo -n "Matlab Arch: "
echo `./urdme/bin/urdme_init -a`
####################################################
if [ "$1" == "" ]; then
URDME_ROOT=$DEFAULT
else
URDME_ROOT=$1
fi
####################################################
echo "URDME installation destination: $URDME_ROOT"
echo "To specify a different installation location, exit and call this script with the location as the argument."
echo " install.sh /path/to/install/directory/ "
if [ ! -d "$URDME_ROOT" ]; then
mkdir -p $URDME_ROOT
else
FILE_COUNT=`/bin/ls -l $URDME_ROOT | wc -l`
if [ "$FILE_COUNT" != "0" ]; then
echo "$URDME_ROOT already exists and is not empty. Please remove all previous installations of URDME."
exit
fi
echo "FILE_COUNT=$FILE_COUNT"
fi
if [ ! -w "$URDME_ROOT" ]; then
echo "ERROR: '$URDME_ROOT' is not writeable"
echo "Run this script with the correct permissions."
exit
fi
####################################################
####################################################
####################################################
echo "Press return to continue with installation, or ^C (ctrl + c) to EXIT"
read -s
####################################################
cp -r ./urdme/* "$URDME_ROOT"
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 "URDME installation complete"
####################################################