diff options
| author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-06-04 13:17:31 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-12 22:48:26 +0100 |
| commit | 206049f609f4d4dc5b6e3d0f3c17b939fe8694fc (patch) | |
| tree | cf20ebe1e9fa59ba6ee78a1fae6e69b61e6400bb /meta/recipes-devtools/ruby/ruby_2.2.2.bb | |
| parent | 5198ec99e2a5777806f22f3c864ae4fde5112344 (diff) | |
| download | poky-206049f609f4d4dc5b6e3d0f3c17b939fe8694fc.tar.gz | |
ruby: add a recipe from meta-ruby
Ruby is required to build webkit.
Use trim_version() to build the major release, and remove redundant S assignment
(RB).
(From OE-Core rev: 10fd3b41449d1af15ac9432bc1a7fe26c6f1dae1)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby_2.2.2.bb')
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby_2.2.2.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ruby/ruby_2.2.2.bb b/meta/recipes-devtools/ruby/ruby_2.2.2.bb new file mode 100644 index 0000000000..78c943cc6f --- /dev/null +++ b/meta/recipes-devtools/ruby/ruby_2.2.2.bb | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | require ruby.inc | ||
| 2 | |||
| 3 | SRC_URI[md5sum] = "326e99ddc75381c7b50c85f7089f3260" | ||
| 4 | SRC_URI[sha256sum] = "5ffc0f317e429e6b29d4a98ac521c3ce65481bfd22a8cf845fa02a7b113d9b44" | ||
| 5 | |||
| 6 | # it's unknown to configure script, but then passed to extconf.rb | ||
| 7 | # maybe it's not really needed as we're hardcoding the result with | ||
| 8 | # 0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch | ||
| 9 | UNKNOWN_CONFIGURE_WHITELIST += "--enable-wide-getaddrinfo" | ||
| 10 | |||
| 11 | PACKAGECONFIG ??= "" | ||
| 12 | PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}" | ||
| 13 | |||
| 14 | PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind" | ||
| 15 | PACKAGECONFIG[gpm] = "--with-gmp=yes, --with-gmp=no, gmp" | ||
| 16 | PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo," | ||
| 17 | |||
| 18 | EXTRA_OECONF = "\ | ||
| 19 | --disable-versioned-paths \ | ||
| 20 | --disable-rpath \ | ||
| 21 | --disable-dtrace \ | ||
| 22 | --enable-shared \ | ||
| 23 | --enable-load-relative \ | ||
| 24 | " | ||
| 25 | |||
| 26 | EXTRA_OEMAKE = " \ | ||
| 27 | LIBRUBYARG='-lruby-static' \ | ||
| 28 | " | ||
| 29 | |||
| 30 | do_install() { | ||
| 31 | oe_runmake 'DESTDIR=${D}' install | ||
| 32 | } | ||
| 33 | |||
| 34 | FILES_${PN} += "${datadir}/rubygems \ | ||
| 35 | ${datadir}/ri" | ||
| 36 | |||
| 37 | FILES_${PN}-dbg += "${libdir}/ruby/*/.debug \ | ||
| 38 | ${libdir}/ruby/*/*/.debug \ | ||
| 39 | ${libdir}/ruby/*/*/*/.debug \ | ||
| 40 | ${libdir}/ruby/*/*/*/*/.debug" | ||
| 41 | |||
| 42 | BBCLASSEXTEND = "native" | ||
