blob: 4232a0d436f0c3e3b07d65932e5f6ea8c10d4a1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr
# and depend on 'rust'
makedepends+=(ruby-bootstrap)
# 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
'
)"
unset check
|