blob: 6fe83cd9c2c92d021d3c8fe0d5c9bcddbe4fe11a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# building with ruby-bootstrap in /opt/ruby-xxx, but install into /usr
# and depend on 'rust'
makedepends=(ruby-bootstrap)
# 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
'
)"
|