blob: be4040c42f19045d75d91cc84e43814ad58b2982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr
# and depend on 'rust'
makedepends=(ruby-bootstrap)
# no documentation during bootstrapping
makedepends=(${makedepends[@]//ruby-rdoc/})
# create /opt/ruby-xxx/bin
# install to final destination in /usr and not into /opt/ruby-xxx
eval "$(
declare -f package | \
sed '
/_gemdir/ a mkdir -p "${pkgdir}"/usr/bin
'
)"
|