X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/a962e732d2b8108a4a8a0f31aa3b9fa1ca18bd03..e706a183b3465bc0cd312ea19393fc9ba45bc32e:/packages/ruby/build.sh diff --git a/packages/ruby/build.sh b/packages/ruby/build.sh index 517d36cc..065fbe82 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=1 +TERMUX_PKG_BUILD_REVISION=2 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="libffi, libgmp, readline, openssl, libutil" @@ -47,3 +47,9 @@ termux_step_make_install () { # Fix mention of $_SPECSFLAG in rbconfig: perl -p -i -e "s|${_SPECSFLAG}||g" $RBCONFIG } + +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 +}