index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2022-10-09 15:09:59 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2022-10-09 15:09:59 +0200 |
commit | 10ad8a7769b2b04c5e5c6e6329924c5a854f6007 (patch) | |
tree | 9531f8ad45028beee2f71d3263813bf2a5d630bc | |
parent | a67764b7b25a10a662cef3e0bd5910b82b7c58e6 (diff) |
-rw-r--r-- | community/ruby-rake-compiler/PKGBUILD | 19 |
diff --git a/community/ruby-rake-compiler/PKGBUILD b/community/ruby-rake-compiler/PKGBUILD index 67fe250e..472071e2 100644 --- a/community/ruby-rake-compiler/PKGBUILD +++ b/community/ruby-rake-compiler/PKGBUILD @@ -1,13 +1,16 @@ -# building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr -# and depend on 'ruby' -makedepends+=(ruby-bootstrap) - -# install to final destination in /usr and not into /opt/ruby-xxx +# bootstrapped packages in first step from /opt/ruby- contain +# /opt/ruby-XXX/bin in the binaries in /usr/bin and they have +# wrong architecture strings in native library code +eval "$( + declare -f build | \ + sed ' + 3 i export RUBYLIB=/usr/lib/ruby/3.0.0/x86-linux + ' +)" eval "$( - declare -f package | \ + declare -f package | \ sed ' - s|local _gemdir.*|local _gemdir="/usr/lib/ruby/gems/3.0.0"|g - /_gemdir/ a mkdir -p "${pkgdir}"/usr/bin/ + 3 i export RUBYLIB=/usr/lib/ruby/3.0.0/x86-linux ' )" |