root/trunk/lib/runscripts/import.run @ 14222
1 |
#!/bin/bash -e
|
---|---|
2 |
|
3 |
if false; then #### run script template: |
4 |
#!/bin/bash -e
|
5 |
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/import.run |
6 |
|
7 |
import()
|
8 |
{
|
9 |
begin_target |
10 |
import_cmds |
11 |
}
|
12 |
fi #### |
13 |
|
14 |
. "$(dirname "${BASH_SOURCE[0]}")"/util.run |
15 |
.rel install.run # provides all()
|
16 |
|
17 |
if self_not_included; then |
18 |
|
19 |
import()
|
20 |
{
|
21 |
begin_target |
22 |
}
|
23 |
|
24 |
export_()
|
25 |
{
|
26 |
begin_target |
27 |
}
|
28 |
|
29 |
install() |
30 |
{
|
31 |
begin_target |
32 |
with_rm import |
33 |
with_rm export_ |
34 |
}
|
35 |
|
36 |
fi
|