blob: 75db01462d9ab363c13ea20b5ff0bcdd74ffe82a (
plain)
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
|
<?xml version="1.0"?>
<!-- $Id$ -->
<encap_profile
profile_ver="1.0"
pkgspec="ostiary-doc-20060801"
>
<prereq package="m4-1.4.4" />
<environment
variable="PATH"
PLATFORM_IF_MATCH(solaris)
value="/usr/local/lib/bcfg2/bin:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin:"
PLATFORM_ELSE
value="/usr/local/lib/bcfg2/bin:/usr/local/bin:"
PLATFORM_ENDIF
type="prepend"
/>
<source
url="http://encapsrcdist/mirror/ostiary/ostiary-doc-20060801.tar.gz
http://mirror.opensysadmin.com/ostiary/ostiary-doc-20060801.tar.gz"
use_objdir="no"
>
<configure>
:
</configure>
<build>
:
</build>
<install>
test -d ${ENCAP_SOURCE} || mkdir ${ENCAP_SOURCE}
test -d ${ENCAP_SOURCE}/${ENCAP_PKGNAME} || mkdir ${ENCAP_SOURCE}/${ENCAP_PKGNAME}
test -d ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share || mkdir ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share
test -d ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share/doc || mkdir ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share/doc
test -d ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share/doc/ostiary || mkdir ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share/doc/ostiary
cp * ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/share/doc/ostiary
</install>
<clean>
:
</clean>
</source>
<prepackage>
# Make "this encap is installed" sentinal file available in /usr/local/var/encap
test -d var || mkdir var
test -d var/encap || mkdir var/encap
touch var/encap/${ENCAP_PKGNAME}
</prepackage>
<encapinfo>
description ostiary-doc - documentation from ostiary website
</encapinfo>
</encap_profile>
|