-
Notifications
You must be signed in to change notification settings - Fork 1
/
library-symlinks.sh
executable file
·80 lines (61 loc) · 1.37 KB
/
library-symlinks.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
74
75
76
77
78
79
80
set -e
if [ -z ${LIBRARIES_HOME+x} ]; then
echo "LIBRARIES_HOME must be set to the libraries directory path... exiting"
exit 1
fi
if [ ! -d "$LIBRARIES_HOME" ]; then
echo "$LIBRARIES_HOME does not exist... exiting"
exit 1
fi
function make_directory {
directory=$1
lib_directory="$LIBRARIES_HOME/$directory"
if [ ! -d "$lib_directory" ]; then
echo "- making directory $lib_directory"
mkdir -p "$lib_directory"
fi
}
function remove_lib_symlinks {
name=$1
directory=$2
dest="$LIBRARIES_HOME"
if [ ! -z "$directory" ]; then
dest="$dest/$directory"
fi
dest="$dest/$name"
for entry in $dest*; do
if [ -h "$entry" ]; then
echo "- removing symlink: $entry"
rm $entry
fi
done
}
function symlink_lib {
name=$1
directory=$2
echo
echo "Symlinking $name"
echo "- - -"
remove_lib_symlinks $name $directory
src="$(pwd)/lib"
dest="$LIBRARIES_HOME"
if [ ! -z "$directory" ]; then
src="$src/$directory"
dest="$dest/$directory"
make_directory $directory
fi
src="$src/$name"
echo "- destination is $dest"
full_name=$directory/$name
for entry in $src*; do
entry_basename=$(basename $entry)
dest_item="$dest/$entry_basename"
echo "- symlinking $entry_basename to $dest_item"
cmd="ln -s $entry $dest_item"
echo $cmd
($cmd)
done
echo "- - -"
echo "($name done)"
echo
}