File: installer

package info (click to toggle)
clustalx 2.1%2Blgpl-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 3,324 kB
  • sloc: cpp: 40,050; sh: 163; xml: 102; makefile: 16
file content (224 lines) | stat: -rwxr-xr-x 5,623 bytes parent folder | download | duplicates (5)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#!/bin/sh

###########################################################################
# Installer for clustal.
#
# Changes:
#
# 25-05-07,Nigel Brown (EMBL): created.
# 08-06-07,Nigel Brown (EMBL): added default link location.
###########################################################################

SAVEPATH=`echo $PATH | tr ':' ' '| sort -u`

PATH=/bin:/usr/bin; export PATH

INSTALLDIR=`pwd`
BINDIR=
SCRIPT=clustalx2
BINARY=clustalx
PROG=`basename $0`

umask 022

cleanup () {
    rm -f "$SCRIPT" >/dev/null 2>&1
    echo; echo Aborted. 1>&2
    exit 1
}

trap cleanup 1 2 3 15

msg ()   { echo $* 1>&2; }
warn ()  { echo " + $*" 1>&2; }
error () { echo $PROG: ERROR: $* 1>&2; }
die ()   { echo $PROG: FATAL: $* 1>&2; exit 1; }

makeLink () {
    src="$1"; dest="$2"; file="$3"
    [ "$dest" = . ] && return
    [ "$src" = "$dest" ] && return
    if [ -e "$dest/$file" ]; then
        warn "Replacing existing file '$dest/$file'"
        rmFile "$dest/$file"
    fi
    symLink "$src/$file" "$dest/$file"
}

rmFile () {
    #warn "Deleting '$1'"
    rm -f "$1" >/dev/null 2>&1 || die "Attempt to delete old '$1' failed"
    warn "Deleted '$1'"
}

symLink () {
    #warn "Symbolic linking '$1' to '$2'"
    ln -s "$1" "$2" >/dev/null 2>&1 || die "Attempt to symlink '$1' to '$2' failed"
    warn "Symlinked '$1' to '$2'"
}

mkDir () {
    mkdir -p "$1" >/dev/null 2>&1
    if [ $? -ne 0 ]; then
        [ $# -lt 2 ] && die "Can't make directory '$1'"
        warn  "Can't make directory '$1'"
    fi
    warn "Created directory '$1'"
}

guessBinDir () {
    [ -n "$BINDIR" ] && return #already set/guessed
    if [ -e /usr/bin/id ]; then
        user=`/usr/bin/id -u`
    elif [ -e /bin/id ]; then
        user=`/bin/id -u`
    elif [ "$USER" = "root" ]; then
        user=0
    fi
    if [ "$user" -eq 0 ]; then
        BINDIR=/usr/local/bin
        msg "You have administrator/root permissions - good!"
    else
        BINDIR=$HOME/bin
        msg "Note: you must have write permission for the chosen directory."
    fi
    #echo; msg "The suggested location will be: [$BINDIR]"
    unset user
}

pauseAndContinue () {
    echo
    echo -n "Hit the 'return' or 'enter' key to continue. "
    read x
    unset x
}

readBinDir () {
    dir=
    while true; do
        echo
        echo -n "Choose a directory for the executable [$BINDIR]? "
        read dir
        echo
        if [ -z "$dir" -a -n "$BINDIR" ]; then
            dir=$BINDIR
            break
        fi
        if [ "$dir" = "$SCRIPT" ]; then
            warn "That name is reserved - please use something else!"
            continue
        fi
        if [ ! -e "$dir" ]; then
            mkDir "$dir" nofail
        fi
        if [ -e "$dir" ]; then
            [ -w "$dir" ] && break
            warn "Directory '$dir' exists, but is not writeable"
        fi
    done
    BINDIR="$dir"
    unset dir
}

checkBinDir () {
    if [ -z "$BINDIR" ]; then
        die "Directory '$BINDIR' was not specified - aborting"
    fi
    if [ "$BINDIR" = "$SCRIPT" ]; then
        die "That name is reserved - please use something else!"
    fi
    if [ ! -d "$BINDIR" -a ! -h "$BINDIR" ]; then
        mkDir "$BINDIR" nofail
    fi
    if [ -d "$BINDIR" -o -h "$BINDIR" ]; then
        if [ -w "$BINDIR" ]; then
            return
        fi
        die "Directory '$BINDIR' exists, but is not writeable"
    fi
    die "Directory '$BINDIR' does not exist and could not be created - aborting"
}

makeScript () {
    cat<<EOT
#!/bin/sh
###########################################################################
# Version: 1.0
# Generated: `date`
###########################################################################
# Path to the clustal installation directory
export CLU_INSTALL_DIR=$INSTALLDIR
BINARY=$BINARY
###########################################################################

PROG=\`basename \$0\`

# Debugging
#echo CLU_INSTALL_DIR=\$CLU_INSTALL_DIR  1>&2
#echo BINARY=\$BINARY  1>&2

# Is there an executable binary file?
binary=\$CLU_INSTALL_DIR/\$BINARY
if [ ! -f \$binary ]; then
    echo "\$PROG: Can't find executable '\$binary'"
    exit 1
fi
if [ ! -x \$binary ]; then
    echo "\$PROG: Binary '\$binary' is not executable"
    exit 1
fi

# Exec the child over this one
exec \$binary \$*
###########################################################################
EOT
}

###########################################################################
if [ ! -f "$BINARY" ]; then
    die "You must change into the unpacked clustal directory first!"
fi
rm -f "$SCRIPT" >/dev/null 2>&1

if [ $# -gt 0 ]; then
    BINDIR="$1"
else 
    cat<<EOT

                            Clustal installer.

A clustal installation consists of two parts: (1) the current directory which
contains all the components that clustal needs to work, and (2) a link to the
clustal executable, which must be placed in a directory on your (or the
users') PATH.

You have already completed step (1) simply by unpacking the archive in its
final destination.

Now complete step (2) by specifying a directory for the executable link. You
can accept the default, or enter a directory from the following list of likely
candidates taken from your PATH.

[$SAVEPATH]

EOT
    #pauseAndContinue
    guessBinDir
    echo; msg "At any time, you may type ^C (ctrl-C) to abort."
    readBinDir
fi
checkBinDir

makeScript > "$SCRIPT"
chmod 0755 "$SCRIPT"
makeLink "$INSTALLDIR" "$BINDIR" "$SCRIPT"
cat<<EOT

Location of components:  $INSTALLDIR
Location of executable:  $BINDIR

Finished.
EOT
exit 0
###########################################################################