-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
165 lines (149 loc) · 3.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/sh
#
# copyright 2003-2005 Gene Pavlovsky <[email protected]>
#
# this is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# install/uninstall: tmv install/uninstall script.
command -v ginstall &>/dev/null && install=${INSTALL:-ginstall} || install=${INSTALL:-install}
project=tmv
version=1.1.3
prefix=/usr/local
bindir=$prefix/bin
bin_scripts='
tmv
tmv-strip
tmv-ul
tmv-l'
if ! cd "$(dirname "$0")"; then
echo "Failed to cd to '$(dirname "$0")'." >&4
exit 1
fi
mode=$(basename "$0" .sh)
if test "$mode" != install -a "$mode" != uninstall; then
echo "Must be called either as install or as uninstall."
exit 1
fi
usage()
{
{
echo "Usage: $(basename $0) [options]"
echo
echo "${mode}s $project $version."
echo
echo "Options:"
echo -e " --help\t\t\tprint this help, then exit"
echo -e " --version\t\t\tprint version number, then exit"
echo -e " --prefix=DIR\t\tinstallation prefix [$prefix]"
echo -e " --bindir=DIR\t\tuser executables [$prefix/bin]"
echo -e " -n, --dry-run\t\t\tdon't run any commands, just print them"
} >&2
exit 2
}
while test $# -gt 0; do
case $1 in
--*=*)
optarg=$(echo "$1" | sed 's/[-_a-zA-Z0-9]*=//')
;;
*)
optarg=
;;
esac
case $1 in
--prefix=*)
prefix="$optarg"
bindir="$prefix/bin"
;;
--bindir=*)
bindir="$optarg"
;;
-n|--dry-run)
dry_run=yes
;;
--help)
usage
;;
--version)
echo "$project $version" >&2
exit 2
;;
*)
echo "unrecognized option \"$1\"" >&2
exit 1
;;
esac
shift
done
test "$mode" = install &&
echo "installing $project $version to:" ||
echo "uninstalling $project $version from:"
echo
echo " prefix=$prefix"
echo " bindir=$bindir"
echo
echo -n "press enter to continue... "
read
echo
isint()
{
test $# -eq 0 && return 1
while test $# -gt 0; do
test "$1" -eq 0 2>/dev/null
test $? -eq 2 && return 1
shift
done
return 0
}
strstr()
{
declare i=0 skip
isint "$3" && skip=$3 || skip=0
while test $i -le $((${#1}-${#2})); do
if test "${1:i:${#2}}" = "$2"; then
if test $skip -gt 0; then
let --skip
let ++i
continue
fi
echo $i
return 0
fi
let ++i
done
return 1
}
run()
{
test "${1:0:3}" != "sed" && eval echo "$1"
test "$dry_run" = yes || eval $1 || { echo -e '\nFailed.' >&2; exit 1; }
}
symlink_do()
{
pos=$(strstr "$2" '->') || return 0
symlink_dest="$bindir/${2:0:$pos}"
if test "$1" = install; then
symlink_src="${2:$((pos+2))}"
run 'ln -sf $symlink_src $symlink_dest'
elif test "$1" = uninstall; then
run 'rm -f $symlink_dest'
fi
continue
}
if test "$mode" = install; then
run '$install -d -m 755 "$bindir"'
for i in $bin_scripts; do
symlink_do install $i
run '$install -m 755 bin/$i.sh "$bindir/$i"'
run 'sed -i -e "s/@project@/$project/g" -e "s/@version@/$version/g" "$bindir/$i"'
done
else
for i in $bin_scripts; do
symlink_do uninstall $i
run 'rm -f "$bindir/$i"'
done
run 'rmdir "$bindir" 2>/dev/null'
fi
test "$mode" = uninstall && run 'rmdir "$prefix" 2>/dev/null'