From 75fd7dcb7e192d9e122c9d52ddf53d009392f9bd Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 8 Oct 2022 15:31:35 +0200 Subject: community/rubygems: set PATH to find ruby in bootstrap, avoid installing ruby itself --- community/rubygems/PKGBUILD | 3 +++ 1 file changed, 3 insertions(+) (limited to 'community') diff --git a/community/rubygems/PKGBUILD b/community/rubygems/PKGBUILD index e4a5d80a..8d8a8156 100644 --- a/community/rubygems/PKGBUILD +++ b/community/rubygems/PKGBUILD @@ -1,12 +1,15 @@ # building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr # and depend on 'ruby' +# this means that 'ruby setup.py' is not found (must set PATH to bootstrap ruby) makedepends=(ruby-bootstrap) +depends=() # install to final destination in /usr and not into /opt/ruby-xxx eval "$( declare -f package | \ sed ' s|local _gemdir.*|local _gemdir="/usr/lib/ruby/gems/3.0.0"|g + 3 i PATH="/opt/ruby-bootstrap-3.0.4/bin:${PATH}" ' )" -- cgit v1.2.3-54-g00ecf