blob: fd3911ba75da3cefb066d42762d3b926abd34f28 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "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 | GPLv2"
10LIC_FILES_CHKSUM = "\
Brad Bishop316dfdd2018-06-25 12:45:53 -040011 file://COPYING;md5=340948e1882e579731841bf49cdc22c1 \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012 file://BSDL;md5=19aaf65c88a40b508d17ae4be539c4b5\
13 file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263\
Brad Bishop316dfdd2018-06-25 12:45:53 -040014 file://LEGAL;md5=8f871f3f03732c018a5fa9b185958231 \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015"
16
Brad Bishop316dfdd2018-06-25 12:45:53 -040017DEPENDS = "ruby-native zlib openssl tcl libyaml gdbm readline"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018DEPENDS_class-native = "openssl-native libyaml-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}"
21SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \
22 file://extmk.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060023 file://0002-Obey-LDFLAGS-for-the-link-of-libruby.patch \
24 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026
27inherit autotools
28
29
30# This snippet lets compiled extensions which rely on external libraries,
31# such as zlib, compile properly. If we don't do this, then when extmk.rb
32# runs, it uses the native libraries instead of the target libraries, and so
33# none of the linking operations succeed -- which makes extconf.rb think
34# that the libraries aren't available and hence that the extension can't be
35# built.
36
37do_configure_prepend() {
38 sed -i "s#%%TARGET_CFLAGS%%#$TARGET_CFLAGS#; s#%%TARGET_LDFLAGS%%#$TARGET_LDFLAGS#" ${S}/common.mk
39 rm -rf ${S}/ruby/
40}