diff options
Diffstat (limited to 'bootmenu')
-rw-r--r-- | bootmenu/bootmenu_0.6.oe | 2 | ||||
-rw-r--r-- | bootmenu/bootmenu_0.7.oe | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/bootmenu/bootmenu_0.6.oe b/bootmenu/bootmenu_0.6.oe index 3faac47016..ccfd1d46f6 100644 --- a/bootmenu/bootmenu_0.6.oe +++ b/bootmenu/bootmenu_0.6.oe @@ -1,4 +1,4 @@ -DEPENDS = virtual/libc +DEPENDS = "virtual/libc" SRC_URI := http://www.cosmicpenguin.net/pub/bootmenu/${P}.tar.gz \ file://${FILESDIR}/compile.patch;patch=1 diff --git a/bootmenu/bootmenu_0.7.oe b/bootmenu/bootmenu_0.7.oe index e69de29bb2..bfcc3eb007 100644 --- a/bootmenu/bootmenu_0.7.oe +++ b/bootmenu/bootmenu_0.7.oe @@ -0,0 +1,14 @@ +DEPENDS = "virtual/libc" + +SRC_URI := http://www.cosmicpenguin.net/pub/bootmenu/${P}.tar.gz + +EXTRA_OEMAKE = +do_compile () { + cd src + oe_runmake 'CC=${CC}' 'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' +} + +do_install () { + cd src + oe_runmake 'PLUGINDIR=${datadir}/bootmenu' 'PREFIX=${bindir}' 'DESTDIR=${D}' install +} |