index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2022-10-09 09:10:35 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2022-10-09 09:10:35 +0200 |
commit | f1b42b3d18eab8ade8c02ac3dce75af3df742091 (patch) | |
tree | a89cbda4009a472f5fed47306fb20209be716afa /community/ruby-cgi | |
parent | fc9b8c115f0b7b3e8227fcea2a1d8246bc1dd0c7 (diff) |
-rw-r--r-- | community/ruby-cgi/PKGBUILD | 16 |
diff --git a/community/ruby-cgi/PKGBUILD b/community/ruby-cgi/PKGBUILD index e4a5d80a..472071e2 100644 --- a/community/ruby-cgi/PKGBUILD +++ b/community/ruby-cgi/PKGBUILD @@ -1,12 +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 | \ sed ' - s|local _gemdir.*|local _gemdir="/usr/lib/ruby/gems/3.0.0"|g + 3 i export RUBYLIB=/usr/lib/ruby/3.0.0/x86-linux ' )" |