diff options
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby.inc')
-rw-r--r-- | meta/recipes-devtools/ruby/ruby.inc | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc deleted file mode 100644 index ebff5efd1f..0000000000 --- a/meta/recipes-devtools/ruby/ruby.inc +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | SUMMARY = "An interpreter of object-oriented scripting language" | ||
2 | DESCRIPTION = "Ruby is an interpreted scripting language for quick \ | ||
3 | and easy object-oriented programming. It has many features to process \ | ||
4 | text files and to do system management tasks (as in Perl). \ | ||
5 | It is simple, straight-forward, and extensible. \ | ||
6 | " | ||
7 | HOMEPAGE = "http://www.ruby-lang.org/" | ||
8 | SECTION = "devel/ruby" | ||
9 | LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPL-2.0-only | ISC | MIT" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \ | ||
11 | file://BSDL;md5=8b50bc6de8f586dc66790ba11d064d75 \ | ||
12 | file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
13 | file://LEGAL;md5=f260190bc1e92e363f0ee3c0463d4c7c \ | ||
14 | " | ||
15 | |||
16 | DEPENDS = "zlib openssl libyaml gdbm readline libffi" | ||
17 | DEPENDS:append:class-target = " ruby-native" | ||
18 | |||
19 | SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}" | ||
20 | SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \ | ||
21 | file://0001-extmk-fix-cross-compilation-of-external-gems.patch \ | ||
22 | file://0002-Obey-LDFLAGS-for-the-link-of-libruby.patch \ | ||
23 | " | ||
24 | UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/" | ||
25 | |||
26 | inherit autotools ptest pkgconfig | ||
27 | |||
28 | |||
29 | # This snippet lets compiled extensions which rely on external libraries, | ||
30 | # such as zlib, compile properly. If we don't do this, then when extmk.rb | ||
31 | # runs, it uses the native libraries instead of the target libraries, and so | ||
32 | # none of the linking operations succeed -- which makes extconf.rb think | ||
33 | # that the libraries aren't available and hence that the extension can't be | ||
34 | # built. | ||
35 | |||
36 | do_configure:prepend() { | ||
37 | sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk | ||
38 | rm -rf ${S}/ruby/ | ||
39 | } | ||