summaryrefslogtreecommitdiff
path: root/meta/packages/readline/readline.inc
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-09-01 19:09:11 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-01 19:09:57 +0100
commitd62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch)
treef36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/packages/readline/readline.inc
parentcaab7fc509bf27706ff3248689f6afd04225cfda (diff)
downloadopenembedded-core-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz
openembedded-core-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.bz2
openembedded-core-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.xz
openembedded-core-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.zip
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/readline/readline.inc')
-rw-r--r--meta/packages/readline/readline.inc34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/packages/readline/readline.inc b/meta/packages/readline/readline.inc
deleted file mode 100644
index 35bc7ed94..000000000
--- a/meta/packages/readline/readline.inc
+++ /dev/null
@@ -1,34 +0,0 @@
-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"
-
-# GPLv2+ (< 6.0), GPLv3+ (>= 6.0)
-LICENSE = "GPLv3+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
-
-DEPENDS += "ncurses"
-
-SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz \
- file://configure-fix.patch \
- file://acinclude.m4"
-
-S = "${WORKDIR}/${BPN}-${PV}"
-
-inherit autotools
-
-LEAD_SONAME = "libreadline.so"
-
-do_configure_prepend () {
- install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
-}
-
-do_install_append () {
- # Make install doesn't properly install these
- oe_libinstall -so -C shlib libhistory ${D}${libdir}
- oe_libinstall -so -C shlib libreadline ${D}${libdir}
-}
-
-BBCLASSEXTEND = "native nativesdk"