diff options
-rw-r--r-- | meta/recipes-devtools/ruby/ruby_2.2.2.bb | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/meta/recipes-devtools/ruby/ruby_2.2.2.bb b/meta/recipes-devtools/ruby/ruby_2.2.2.bb index 9b807a7cd9..6715023565 100644 --- a/meta/recipes-devtools/ruby/ruby_2.2.2.bb +++ b/meta/recipes-devtools/ruby/ruby_2.2.2.bb | |||
@@ -31,7 +31,16 @@ do_install() { | |||
31 | oe_runmake 'DESTDIR=${D}' install | 31 | oe_runmake 'DESTDIR=${D}' install |
32 | } | 32 | } |
33 | 33 | ||
34 | FILES_${PN} += "${datadir}/rubygems \ | 34 | PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc" |
35 | ${datadir}/ri" | 35 | |
36 | SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library" | ||
37 | RDEPENDS_${PN}-ri-docs = "${PN}" | ||
38 | FILES_${PN}-ri-docs += "${datadir}/ri" | ||
39 | |||
40 | SUMMARY_${PN}-rdoc = "RDoc documentation generator from Ruby source" | ||
41 | RDEPENDS_${PN}-rdoc = "${PN}" | ||
42 | FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc" | ||
43 | |||
44 | FILES_${PN} += "${datadir}/rubygems" | ||
36 | 45 | ||
37 | BBCLASSEXTEND = "native" | 46 | BBCLASSEXTEND = "native" |