build-style/perl6-dist: rename to raku-dist.
This commit is contained in:
parent
3461044e57
commit
e8e2b2e90a
|
@ -896,8 +896,7 @@ Additional install arguments can be specified via `make_install_args`.
|
|||
- `perl-module` For packages that use the Perl
|
||||
[ExtUtils::MakeMaker](http://perldoc.perl.org/ExtUtils/MakeMaker.html) build method.
|
||||
|
||||
- `perl6-dist` For packages that use the Rakudo Perl 6
|
||||
`perl6-install-dist` build method with rakudo.
|
||||
- `raku-dist` For packages that use the Raku `raku-install-dist` build method with rakudo.
|
||||
|
||||
- `waf3` For packages that use the Python3 `waf` build method with python3.
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
#
|
||||
# This helper is for Rakudo Perl 6 package templates.
|
||||
#
|
||||
|
||||
do_check() {
|
||||
PERL6LIB=lib prove -r -e perl6 t/
|
||||
}
|
||||
|
||||
do_install() {
|
||||
export RAKUDO_LOG_PRECOMP=1
|
||||
export RAKUDO_RERESOLVE_DEPENDENCIES=0
|
||||
perl6-install-dist \
|
||||
--to=${DESTDIR}/usr/share/perl6/vendor \
|
||||
--for=vendor \
|
||||
--from=.
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
#
|
||||
# This helper is for Raku package templates.
|
||||
#
|
||||
|
||||
do_check() {
|
||||
PERL6LIB=lib prove -r -e raku t/
|
||||
}
|
||||
|
||||
do_install() {
|
||||
export RAKUDO_LOG_PRECOMP=1
|
||||
export RAKUDO_RERESOLVE_DEPENDENCIES=0
|
||||
raku-install-dist \
|
||||
--to=${DESTDIR}/usr/lib/raku/vendor \
|
||||
--for=vendor \
|
||||
--from=.
|
||||
}
|
Loading…
Reference in New Issue