blob: 85ee7ffd4391ba3bcb7bd5d424b4eb0900a67945 (
plain)
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
|
#!/usr/bin/env bash
mode=$1
if [[ -z $mode ]]; then
mode="install"
fi
source_base=`pwd`
if [[ $mode == install ]]; then
# Ensure that the Cellar exists
if [[ ! -e "$source_base/Cellar" ]] ; then
mkdir -p "$source_base/Cellar"
fi
if [[ ! -e "/usr/local/bin" ]] ; then
mkdir -p /usr/local/bin
fi
ln -s "$source_base/bin/brew" "/usr/local/bin/brew";
ln -s "$source_base/Library" "/usr/local/Library";
ln -s "$source_base/Cellar" "/usr/local/Cellar";
elif [[ $mode == undo ]]; then
if [[ -h "/usr/local/bin/brew" ]] ; then
rm "/usr/local/bin/brew"
fi
if [[ -h "/usr/local/Library" ]] ; then
rm "/usr/local/Library"
fi
if [[ -h "/usr/local/Cellar" ]] ; then
rm "/usr/local/Cellar"
fi
else
echo "Unknown command: $mode";
echo "\tselflink.sh [install] >> symlinks to /usr/local"
echo "\tselflink.sh undo >> removes symlinks from /usr/local"
fi
|