diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2010-09-02 16:49:26 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-08 16:36:53 -0700 |
commit | 7400ece67408963c89e30443d813e9025a74c92f (patch) | |
tree | 04fb74370c5ca4378628184d6d1c6dcef2eee83d | |
parent | ef8d4dc7d5c169eea8b3c117aaab01c4e297f0c0 (diff) | |
download | poky-7400ece67408963c89e30443d813e9025a74c92f.tar.gz |
man-pages:Add new man-pages package
The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user programs
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
-rw-r--r-- | meta/recipes-extended/man-pages/man-pages_3.25.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-extended/man-pages/man-pages_3.25.bb b/meta/recipes-extended/man-pages/man-pages_3.25.bb new file mode 100644 index 0000000000..93cb70a294 --- /dev/null +++ b/meta/recipes-extended/man-pages/man-pages_3.25.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user programs" | ||
2 | SECTION = "console/utils" | ||
3 | PRIORITY = "required" | ||
4 | HOMEPAGE = "http://www.kernel.org/pub/linux/docs/man-pages" | ||
5 | LICENSE = "GPL" | ||
6 | PR = "r0" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://README;md5=9dab010c5baa416669e5d17381799dd5" | ||
9 | SRC_URI = "http://www.kernel.org/pub/linux/docs/man-pages/man-pages-3.25.tar.gz" | ||
10 | |||
11 | RDEPENDS = "man" | ||
12 | |||
13 | do_configure_prepend() { | ||
14 | rm -rf not_installed | ||
15 | } | ||
16 | |||
17 | do_configure () { | ||
18 | : | ||
19 | } | ||
20 | |||
21 | do_compile() { | ||
22 | oe_runmake -f Makefile DESTDIR=${D} MANDIR=${D}${mandir} | ||
23 | } | ||
24 | |||
25 | fakeroot do_install() { | ||
26 | oe_runmake install DESTDIR=${D} | ||
27 | } | ||
28 | |||
29 | FILES_${PN} += "${datadir}/man/" | ||