diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/dmidecode/dmidecode_2.10.bb | 12 | ||||
-rw-r--r-- | recipes/nano/nano_2.0.9.bb | 19 |
2 files changed, 31 insertions, 0 deletions
diff --git a/recipes/dmidecode/dmidecode_2.10.bb b/recipes/dmidecode/dmidecode_2.10.bb new file mode 100644 index 0000000000..d3a646dfd1 --- /dev/null +++ b/recipes/dmidecode/dmidecode_2.10.bb @@ -0,0 +1,12 @@ +DESCRIPTION = "DMI (Desktop Management Interface) table related utilities" +HOMEPAGE = "http://www.nongnu.org/dmidecode/" +LICENSE = "GPLv2" +PR = "r0" + +SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${P}.tar.bz2" + +COMPATIBLE_HOST = "(i.86|x86_64).*-linux" + +do_install() { + oe_runmake DESTDIR="${D}" install +} diff --git a/recipes/nano/nano_2.0.9.bb b/recipes/nano/nano_2.0.9.bb new file mode 100644 index 0000000000..0951466b82 --- /dev/null +++ b/recipes/nano/nano_2.0.9.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "GNU nano (Nano's ANOther editor, or \ +Not ANOther editor) is an enhanced clone of the \ +Pico text editor." +HOMEPAGE = "http://www.nano-editor.org/" +LICENSE = "GPLv2" +SECTION = "console/utils" +DEPENDS = "ncurses" + +SRC_URI = "http://www.nano-editor.org/dist/v2.0/nano-${PV}.tar.gz \ + file://glib.m4" + +inherit autotools + +# only 16K more to get everything but the kitchen sink +EXTRA_OECONF = "--enable-all" + +do_configure_prepend () { + install -m 0644 ${WORKDIR}/glib.m4 m4/ +} |