Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community/rubygems/PKGBUILD
blob: 8bf697ea45f9e809510bd30362d3088b705d12a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr
# and depend on 'ruby'
# this means that 'ruby setup.py' is not found (must set PATH to bootstrap ruby)
makedepends=(ruby-bootstrap)
depends=()

# 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
      3 i PATH="/opt/ruby-bootstrap-3.0.4/bin:${PATH}"
      $ i sed -i "1s|.*|#\!/usr/bin/ruby|" "${pkgdir}"/usr/bin/gem
      $ i sed -i "1s|.*|#\!/usr/bin/ruby|" "${pkgdir}"/usr/bin/rbs
      $ i sed -i "1s|.*|#\!/usr/bin/ruby|" "${pkgdir}"/usr/bin/typeprof
    '
)"

unset check