blob: ebff5efd1f520019f1f2ceb5187a5b32d7afe138 [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"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00009LICENSE = "Ruby | BSD-2-Clause | BSD-3-Clause | GPL-2.0-only | ISC | MIT"
Andrew Geisslerd1e89492021-02-12 15:35:20 -060010LIC_FILES_CHKSUM = "file://COPYING;md5=5b8c87559868796979806100db3f3805 \
11 file://BSDL;md5=8b50bc6de8f586dc66790ba11d064d75 \
12 file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
Andrew Geissler595f6302022-01-24 19:11:47 +000013 file://LEGAL;md5=f260190bc1e92e363f0ee3c0463d4c7c \
Andrew Geisslerd1e89492021-02-12 15:35:20 -060014 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000016DEPENDS = "zlib openssl libyaml gdbm readline libffi"
17DEPENDS:append:class-target = " ruby-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
19SHRT_VER = "${@oe.utils.trim_version("${PV}", 2)}"
20SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \
Brad Bishop64c979e2019-11-04 13:55:29 -050021 file://0001-extmk-fix-cross-compilation-of-external-gems.patch \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060022 file://0002-Obey-LDFLAGS-for-the-link-of-libruby.patch \
23 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025
Andrew Geissler595f6302022-01-24 19:11:47 +000026inherit autotools ptest pkgconfig
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
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
Patrick Williams213cb262021-08-07 19:21:33 -050036do_configure:prepend() {
Brad Bishop1d80a2e2019-11-15 16:35:03 -050037 sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038 rm -rf ${S}/ruby/
39}