X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/76d22fff1897169d125809b7f78229fb8b26e096..2dfeda5fbf89b343d8a8e0890815ec563f23d3fe:/packages/ruby/build.sh diff --git a/packages/ruby/build.sh b/packages/ruby/build.sh index 73ecfab6..db4e06f6 100644 --- a/packages/ruby/build.sh +++ b/packages/ruby/build.sh @@ -2,7 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://www.ruby-lang.org/ TERMUX_PKG_DESCRIPTION="Dynamic programming language with a focus on simplicity and productivity" _MAJOR_VERSION=2.3 TERMUX_PKG_VERSION=${_MAJOR_VERSION}.1 -TERMUX_PKG_BUILD_REVISION=3 +TERMUX_PKG_BUILD_REVISION=6 TERMUX_PKG_SRCURL=http://cache.ruby-lang.org/pub/ruby/${_MAJOR_VERSION}/ruby-${TERMUX_PKG_VERSION}.tar.xz # libbffi is used by the fiddle extension module: TERMUX_PKG_DEPENDS="libandroid-support, libffi, libgmp, readline, openssl, libutil" @@ -13,11 +13,15 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_func_setgroups=no ac_cv_func_setresuid=no TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --without-gdbm" # Do not link in libcrypt.so if available (now in disabled-packages): TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_lib_crypt_crypt=no" +# Fix DEPRECATED_TYPE macro clang compatibility: +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" rb_cv_type_deprecated=x" +# getresuid(2) does not work on ChromeOS - https://github.com/termux/termux-app/issues/147: +# TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_getresuid=no" -# Ruby does not use this directly, but specify for gem building C++-using extensions: -CXXFLAGS+=" -frtti -fexceptions" # -lgnustl_shared" +termux_step_pre_configure() { + # Ruby does not use this directly, but specify for gem building C++-using extensions: + CXXFLAGS+=" -frtti -fexceptions" -termux_step_pre_configure () { export GEM_HOME=$TERMUX_PREFIX/var/lib/gems mkdir -p $GEM_HOME }