blob: 29f229155944401cf94ec73d93e098b3959fa11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
require ruby.inc
SRC_URI[md5sum] = "b49fc67a834e4f77249eb73eecffb1c9"
SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c7819ab28"
# it's unknown to configure script, but then passed to extconf.rb
# maybe it's not really needed as we're hardcoding the result with
# 0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch
UNKNOWN_CONFIGURE_WHITELIST += "--enable-wide-getaddrinfo"
PACKAGECONFIG ??= ""
PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind"
PACKAGECONFIG[gpm] = "--with-gmp=yes, --with-gmp=no, gmp"
EXTRA_OECONF = "\
--enable-wide-getaddrinfo \
--disable-versioned-paths \
--disable-rpath \
--enable-shared \
--enable-load-relative \
"
EXTRA_OEMAKE = " \
LIBRUBYARG='-lruby-static' \
"
do_install() {
oe_runmake 'DESTDIR=${D}' install
}
FILES_${PN} += "${datadir}/rubygems \
${datadir}/ri"
FILES_${PN}-dbg += "${libdir}/ruby/*/.debug \
${libdir}/ruby/*/*/.debug \
${libdir}/ruby/*/*/*/.debug \
${libdir}/ruby/*/*/*/*/.debug"
BBCLASSEXTEND = "native"
|