2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.ruby-lang.org/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Dynamic programming language with a focus on simplicity and productivity"
|
2015-12-25 22:35:13 +01:00
|
|
|
_MAJOR_VERSION=2.3
|
2016-11-16 23:58:24 +01:00
|
|
|
TERMUX_PKG_VERSION=${_MAJOR_VERSION}.2
|
|
|
|
TERMUX_PKG_SRCURL=https://cache.ruby-lang.org/pub/ruby/${_MAJOR_VERSION}/ruby-${TERMUX_PKG_VERSION}.tar.xz
|
|
|
|
TERMUX_PKG_SHA256=5c78f311045ce48160092160444dec2744941a5e37d7865032978bd5bf392f0c
|
2015-06-13 01:03:31 +02:00
|
|
|
# libbffi is used by the fiddle extension module:
|
2016-05-10 20:41:33 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libffi, libgmp, readline, openssl, libutil"
|
2015-06-13 01:03:31 +02:00
|
|
|
# Needed to fix compilation on android:
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_func_setgroups=no ac_cv_func_setresuid=no ac_cv_func_setreuid=no --enable-rubygems"
|
2015-12-02 12:58:30 +01:00
|
|
|
# The gdbm module seems to be very little used:
|
|
|
|
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"
|
2016-08-15 15:01:59 +02:00
|
|
|
# Fix DEPRECATED_TYPE macro clang compatibility:
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" rb_cv_type_deprecated=x"
|
2016-09-04 00:45:08 +02:00
|
|
|
# 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"
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2016-09-04 00:45:08 +02:00
|
|
|
termux_step_pre_configure() {
|
|
|
|
# Ruby does not use this directly, but specify for gem building C++-using extensions:
|
|
|
|
CXXFLAGS+=" -frtti -fexceptions"
|
2015-06-13 01:03:31 +02:00
|
|
|
|
|
|
|
export GEM_HOME=$TERMUX_PREFIX/var/lib/gems
|
|
|
|
mkdir -p $GEM_HOME
|
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_make_install () {
|
|
|
|
make install
|
|
|
|
make uninstall # remove possible remains to get fresh timestamps
|
|
|
|
make install
|
|
|
|
|
2015-11-14 03:28:30 +01:00
|
|
|
# rbconfig.rb, used to build native gems, thinks that ${TERMUX_HOST_PLATFORM}-$TOOLNAME should
|
|
|
|
# be used, but we want the unprefixed $TOOLNAME:
|
2015-11-29 14:12:53 +01:00
|
|
|
local RBCONFIG=$TERMUX_PREFIX/lib/ruby/${_MAJOR_VERSION}.0/${TERMUX_HOST_PLATFORM}/rbconfig.rb
|
2015-06-13 01:03:31 +02:00
|
|
|
for tool in gcc "g\+\+" strip nm objdump ar ranlib ld cpp; do
|
|
|
|
perl -p -i -e "s/${TERMUX_HOST_PLATFORM}-$tool/$tool/g" $RBCONFIG
|
|
|
|
done
|
2015-11-14 03:28:30 +01:00
|
|
|
|
|
|
|
# Fix absolute paths to executables:
|
2016-05-02 08:25:38 +02:00
|
|
|
perl -p -i -e 's/^.*CONFIG\["INSTALL"\].*$/ CONFIG["INSTALL"] = "install -c"/' $RBCONFIG
|
|
|
|
perl -p -i -e 's/^.*CONFIG\["PKG_CONFIG"\].*$/ CONFIG["PKG_CONFIG"] = "pkg-config"/' $RBCONFIG
|
|
|
|
perl -p -i -e 's/^.*CONFIG\["MAKEDIRS"\].*$/ CONFIG["MAKEDIRS"] = "mkdir -p"/' $RBCONFIG
|
|
|
|
perl -p -i -e 's/^.*CONFIG\["MKDIR_P"\].*$/ CONFIG["MKDIR_P"] = "mkdir -p"/' $RBCONFIG
|
|
|
|
perl -p -i -e 's/^.*CONFIG\["EGREP"\].*$/ CONFIG["EGREP"] = "grep -E"/' $RBCONFIG
|
|
|
|
perl -p -i -e 's/^.*CONFIG\["GREP"\].*$/ CONFIG["GREP"] = "grep"/' $RBCONFIG
|
2015-11-14 03:28:30 +01:00
|
|
|
|
2015-11-13 22:20:05 +01:00
|
|
|
# Fix mention of $_SPECSFLAG in rbconfig:
|
|
|
|
perl -p -i -e "s|${_SPECSFLAG}||g" $RBCONFIG
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|
2016-05-10 14:28:22 +02:00
|
|
|
|
|
|
|
termux_step_post_massage () {
|
|
|
|
if [ ! -f $TERMUX_PREFIX/lib/ruby/${_MAJOR_VERSION}.0/${TERMUX_HOST_PLATFORM}/readline.so ]; then
|
|
|
|
echo "Error: The readline extension was not built"
|
|
|
|
fi
|
|
|
|
}
|