blob: 82878049ae5948620303c9e7142db71bb1e5cd36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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
'
)"
# Command failed with status (1): [/opt/ruby-bootstrap-3.0.4/bin/ruby run-tes...]
# /build/ruby-csv/src/csv-3.2.5/Rakefile:10:in `block in <top (required)>'
# Tasks: TOP => test
unset check
|