summaryrefslogtreecommitdiffstats
path: root/meta-ruby/recipes-devtools/ruby/ruby.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-ruby/recipes-devtools/ruby/ruby.inc')
-rw-r--r--meta-ruby/recipes-devtools/ruby/ruby.inc38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-ruby/recipes-devtools/ruby/ruby.inc b/meta-ruby/recipes-devtools/ruby/ruby.inc
new file mode 100644
index 0000000000..a70f951518
--- /dev/null
+++ b/meta-ruby/recipes-devtools/ruby/ruby.inc
@@ -0,0 +1,38 @@
1DESCRIPTION = "Ruby is an interpreted scripting language \
2for quick and easy object-oriented programming."
3SECTION = "devel/ruby"
4LICENSE = "GPLv2 & LGPLv2+ & BSD"
5LIC_FILES_CHKSUM = "file://COPYING;md5=99f88e67b65504d289a0326c59f9c148 \
6 file://LEGAL;md5=7d502ae3b621dc406b220dadddb72e16 \
7 file://LGPL;md5=7fbc338309ac38fefcd64b04bb903e34 \
8"
9
10DEPENDS = "ruby-native zlib openssl"
11DEPENDS_virtclass-native = ""
12
13INC_PR = "r0"
14
15SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
16SRC_URI = "ftp://ftp.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \
17 file://extmk_run.patch \
18 file://extmk.patch \
19"
20
21S = "${WORKDIR}/ruby-${PV}"
22
23inherit autotools
24
25# fix building of socket extension
26EXTRA_OECONF = "--enable-wide-getaddrinfo"
27
28# This snippet lets compiled extensions which rely on external libraries,
29# such as zlib, compile properly. If we don't do this, then when extmk.rb
30# runs, it uses the native libraries instead of the target libraries, and so
31# none of the linking operations succeed -- which makes extconf.rb think
32# that the libraries aren't available and hence that the extension can't be
33# built.
34
35do_configure_prepend() {
36 sed -i "s#%%TARGET_CFLAGS%%#$TARGET_CFLAGS#; s#%%TARGET_LDFLAGS%%#$TARGET_LDFLAGS#" ${S}/common.mk
37 rm -rf ${S}/ruby/
38}