blob: 1ecd087d7d2c1657422e8ed27524d7ec33cc3398 [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 Bishop1a4b7ee2018-12-16 17:11:34 -080014 file://LEGAL;md5=23a79bb4c1a40f6cc9bcb6f4e7c39799 \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015"
16
Brad Bishopc342db32019-05-15 21:57:59 -040017DEPENDS = "ruby-native zlib openssl tcl libyaml gdbm readline libffi"
Brad Bishop19323692019-04-05 15:28:33 -040018DEPENDS_class-native = "openssl-native libyaml-native readline-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
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() {
38 sed -i "s#%%TARGET_CFLAGS%%#$TARGET_CFLAGS#; s#%%TARGET_LDFLAGS%%#$TARGET_LDFLAGS#" ${S}/common.mk
39 rm -rf ${S}/ruby/
40}