diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /bootmenu | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
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 +} |