root/trunk/lib/runscripts/install.run @ 13562
1 | 10831 | aaronmk | #!/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 | 12968 | aaronmk | begin_target |
10 | 10831 | aaronmk | 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 | 12968 | aaronmk | begin_target |
21 | 10831 | aaronmk | }
|
22 | |||
23 | all()
|
||
24 | {
|
||
25 | 12968 | aaronmk | begin_target |
26 | with_rm install
|
||
27 | 10831 | aaronmk | }
|
28 | |||
29 | fi
|