blob: a38b3fe62470d6d36bae8ff96cf5cbad545f74d1 [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"
Brad Bishop64c979e2019-11-04 13:55:29 -05009LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPLv2 | ISC | MIT"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010LIC_FILES_CHKSUM = "\
Andrew Geissler82c905d2020-04-13 13:39:40 -050011 file://COPYING;md5=5b8c87559868796979806100db3f3805 \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012 file://BSDL;md5=19aaf65c88a40b508d17ae4be539c4b5\
13 file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263\
Andrew Geissler82c905d2020-04-13 13:39:40 -050014 file://LEGAL;md5=2b6d62dc0d608f34d510ca3f428110ec \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015"
16
Andrew Geissler706d5aa2021-02-12 15:55:30 -060017DEPENDS = "ruby-native zlib openssl tcl libyaml gdbm readline libffi"
Brad Bishop08902b02019-08-20 09:16:51 -040018DEPENDS_class-native = "openssl-native libyaml-native readline-native zlib-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 \
Brad Bishop64c979e2019-11-04 13:55:29 -050022 file://0001-extmk-fix-cross-compilation-of-external-gems.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
Brad Bishopc342db32019-05-15 21:57:59 -040027inherit autotools ptest
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
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() {
Brad Bishop1d80a2e2019-11-15 16:35:03 -050038 sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 rm -rf ${S}/ruby/
40}