diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-09-21 11:11:52 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-14 16:54:33 +0100 |
commit | f6cda544452b6a495c84bcc42cec9c03e6102661 (patch) | |
tree | 6dfcd63fe86868e10818b4994cade68333bd504e /meta/recipes-extended/man-pages/man-pages_3.54.bb | |
parent | c9b52f8b0706f4eaa60fc46b98cf4617657e5cf3 (diff) | |
download | openembedded-core-f6cda544452b6a495c84bcc42cec9c03e6102661.tar.gz openembedded-core-f6cda544452b6a495c84bcc42cec9c03e6102661.tar.bz2 openembedded-core-f6cda544452b6a495c84bcc42cec9c03e6102661.zip |
man-pages: upgrade to 3.54
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/man-pages/man-pages_3.54.bb')
-rw-r--r-- | meta/recipes-extended/man-pages/man-pages_3.54.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-extended/man-pages/man-pages_3.54.bb b/meta/recipes-extended/man-pages/man-pages_3.54.bb new file mode 100644 index 0000000000..1edaa235a4 --- /dev/null +++ b/meta/recipes-extended/man-pages/man-pages_3.54.bb @@ -0,0 +1,29 @@ +SUMMARY = "Linux man-pages" +DESCRIPTION = "The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user programs" +SECTION = "console/utils" +HOMEPAGE = "http://www.kernel.org/pub/linux/docs/man-pages" +LICENSE = "GPLv2+" + +LIC_FILES_CHKSUM = "file://README;md5=0422377a748010b2b738342e24f141c1" +SRC_URI = "${KERNELORG_MIRROR}/linux/docs/${BPN}/Archive/${BP}.tar.gz" + +SRC_URI[md5sum] = "57fa37123b6dd09e06b9d1b0b4aee8b6" +SRC_URI[sha256sum] = "e5d6d61a8de48bc27a1a8135c20c740ee33d35970f0859bfe14aef34253d9df8" + +RDEPENDS_${PN} = "man" + +do_configure () { + : +} + +do_compile() { + : +} + +do_install() { + oe_runmake install DESTDIR=${D} +} + +# Only deliveres man-pages so FILES_${PN} gets everything +FILES_${PN}-doc = "" +FILES_${PN} = "${mandir}/*" |