From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/readline/readline_5.2.bb | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 recipes/readline/readline_5.2.bb (limited to 'recipes/readline/readline_5.2.bb') diff --git a/recipes/readline/readline_5.2.bb b/recipes/readline/readline_5.2.bb new file mode 100644 index 0000000000..a7dc818790 --- /dev/null +++ b/recipes/readline/readline_5.2.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \ +command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes \ +additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those \ +lines, and perform csh-like history expansion on previous commands." +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPLv2" +DEPENDS += "ncurses" +RPROVIDES_${PN} += "readline" +LEAD_SONAME = "libreadline.so" +PR = "r4" + +SRC_URI = "ftp://ftp.gnu.org/gnu/readline/readline-${PV}.tar.gz \ + file://configure_fix.patch;patch=1 \ + file://acinclude.m4" + +S = "${WORKDIR}/readline-${PV}" + +inherit autotools + +do_configure () { + install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ + autotools_do_configure +} + +do_stage() { + autotools_stage_all +} + +do_install () { + autotools_do_install + # Make install doesn't properly install these + oe_libinstall -so -C shlib libhistory ${D}${libdir} + oe_libinstall -so -C shlib libreadline ${D}${libdir} +} -- cgit 1.2.3-korg