summaryrefslogtreecommitdiff
path: root/test~/inherit/base.oe
blob: 6078e4826d0491bb8119952088bdaff5ea1abcf7 (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
base_do_unpack() {
	oenote "base_do_unpack"
	test "${A}" != "" && unpack "${A}" || oenote "nothing to extract"
}


base_do_compile() {
	oenote "base_do_compile"
	if [ -x ./configure ] ; then
		oeconf 
		oe_runmake || die "oemake failed"
	else
		oenote "nothing to compile"
	fi
}


base_do_stage() {
	oenote "base_do_stage"
	oenote "nothing to install into stage area"
}


base_do_install() {
	oenote "base_do_install"
	oenote "nothing to install"
}

EXPORT_FUNCTIONS do_unpack do_compile do_stage do_install