blob: c24ebfd20d901e12704c06246608872ff11c1f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# no documentation during bootstrapping
makedepends=(${makedepends[@]//ruby-rdoc/})
makedepends+=(ruby-bootstrap)
# install to final destination in /usr and not into /opt/ruby-xxx
eval "$(
declare -f package | \
sed '
/_gemdir/ a mkdir -p "${pkgdir}"/opt/"${pkgname}-${pkgver}"
'
)"
|