Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2022-10-09 09:00:18 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2022-10-09 09:00:18 +0200
commitfc9b8c115f0b7b3e8227fcea2a1d8246bc1dd0c7 (patch)
treeee28fb1bf2f175590874e79e6d532fa3bdc8d729 /community
parent5bab84bb4afd2f57d92c6f4fbd930814cf39f92a (diff)
community/ruby-base64: rebuilding against ruby with patching for finding shared libraries
Diffstat (limited to 'community')
-rw-r--r--community/ruby-base64/PKGBUILD16
1 files changed, 10 insertions, 6 deletions
diff --git a/community/ruby-base64/PKGBUILD b/community/ruby-base64/PKGBUILD
index e4a5d80a..472071e2 100644
--- a/community/ruby-base64/PKGBUILD
+++ b/community/ruby-base64/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
'
)"