diff options
Diffstat (limited to 'test~/inherit/base.oe')
-rw-r--r-- | test~/inherit/base.oe | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test~/inherit/base.oe b/test~/inherit/base.oe index e69de29bb2..6078e4826d 100644 --- a/test~/inherit/base.oe +++ b/test~/inherit/base.oe @@ -0,0 +1,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 |