blob: 2a7c58f7c27fede104a4214c78ff25496b0fe106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# bootstrapping with ruby-bootstrap in /opt/ruby-xxx
depends=('ruby-bootstrap' 'ruby-stringio' 'ruby-time' 'ruby-uri')
# 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
'
)"
|