Another pass of .oe cleanups.
[vuplus_openembedded] / readline / readline_4.3.oe
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 MAINTAINER = "Greg Gilbert <greg@treke.net>"
8 RDEPENDS = "libc6"
9 DEPENDS = "virtual/libc"
10
11 SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \
12            file://${FILESDIR}/signalnamespace.patch;patch=1"
13
14 inherit autotools libtool
15
16 do_stage() {
17         oe_soinstall shlib/libhistory.so.${PV} ${STAGING_LIBDIR}/
18         oe_soinstall shlib/libreadline.so.${PV} ${STAGING_LIBDIR}/
19
20         install -d ${STAGING_INCDIR}/readline
21         for f in readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h \
22           rlconf.h rltypedefs.h
23         do
24                 install -m 0644 $f ${STAGING_INCDIR}/readline/
25         done
26
27 }