summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ruby/ruby.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby.inc')
-rw-r--r--meta/recipes-devtools/ruby/ruby.inc39
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 @@
1SUMMARY = "An interpreter of object-oriented scripting language"
2DESCRIPTION = "Ruby is an interpreted scripting language for quick \
3and easy object-oriented programming. It has many features to process \
4text files and to do system management tasks (as in Perl). \
5It is simple, straight-forward, and extensible. \
6"
7HOMEPAGE = "http://www.ruby-lang.org/"
8SECTION = "devel/ruby"
9LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPL-2.0-only | ISC | MIT"
10LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \
11 file://BSDL;md5=8b50bc6de8f586dc66790ba11d064d75 \
12 file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
13 file://LEGAL;md5=f260190bc1e92e363f0ee3c0463d4c7c \
14 "
15
16DEPENDS = "zlib openssl libyaml gdbm readline libffi"
17DEPENDS:append:class-target = " ruby-native"
18
19SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}"
20SRC_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 "
24UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/"
25
26inherit 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
36do_configure:prepend() {
37 sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk
38 rm -rf ${S}/ruby/
39}