root/trunk/lib/runscripts/install.run @ 12642
1 |
#!/bin/bash -e
|
---|---|
2 |
|
3 |
if false; then #### run script template: |
4 |
#!/bin/bash -e
|
5 |
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/install.run |
6 |
|
7 |
install() |
8 |
{
|
9 |
echo_func |
10 |
install_cmds |
11 |
}
|
12 |
fi #### |
13 |
|
14 |
. "$(dirname "${BASH_SOURCE[0]}")"/util.run |
15 |
|
16 |
if self_not_included; then |
17 |
|
18 |
install() |
19 |
{
|
20 |
echo_func |
21 |
}
|
22 |
|
23 |
all()
|
24 |
{
|
25 |
echo_func |
26 |
install
|
27 |
}
|
28 |
|
29 |
fi
|