diff options
author | Samuel Ortiz <sameo@openedhand.com> | 2008-10-07 22:34:01 +0000 |
---|---|---|
committer | Samuel Ortiz <sameo@openedhand.com> | 2008-10-07 22:34:01 +0000 |
commit | 95857f6cadeff0471d4f877a97612a58a95b5bf2 (patch) | |
tree | e0281a390b88f17452c8b0b39a175c23e36af4fd /meta/packages/readline/readline_5.2.bb | |
parent | c16dee4ff920ae0cf2004f94270b7906f180a570 (diff) | |
download | poky-95857f6cadeff0471d4f877a97612a58a95b5bf2.tar.gz |
readline: bump to the latest 5.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5438 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/readline/readline_5.2.bb')
-rw-r--r-- | meta/packages/readline/readline_5.2.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/packages/readline/readline_5.2.bb b/meta/packages/readline/readline_5.2.bb new file mode 100644 index 0000000000..1780ee172f --- /dev/null +++ b/meta/packages/readline/readline_5.2.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \ | ||
2 | command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes \ | ||
3 | additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those \ | ||
4 | lines, and perform csh-like history expansion on previous commands." | ||
5 | SECTION = "libs" | ||
6 | PRIORITY = "optional" | ||
7 | LICENSE = "GPLv2" | ||
8 | DEPENDS += "ncurses" | ||
9 | RPROVIDES_${PN} += "readline" | ||
10 | LEAD_SONAME = "libreadline.so" | ||
11 | PR = "r3" | ||
12 | |||
13 | SRC_URI = "ftp://ftp.gnu.org/gnu/readline/readline-${PV}.tar.gz \ | ||
14 | file://acinclude.m4" | ||
15 | |||
16 | S = "${WORKDIR}/readline-${PV}" | ||
17 | |||
18 | inherit autotools | ||
19 | |||
20 | do_configure () { | ||
21 | install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ | ||
22 | autotools_do_configure | ||
23 | } | ||
24 | |||
25 | do_stage() { | ||
26 | autotools_stage_all | ||
27 | } | ||
28 | |||
29 | do_install () { | ||
30 | autotools_do_install | ||
31 | # Make install doesn't properly install these | ||
32 | oe_libinstall -so -C shlib libhistory ${D}${libdir} | ||
33 | oe_libinstall -so -C shlib libreadline ${D}${libdir} | ||
34 | } | ||