Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build-style/perl6-dist: rename to raku-dist. #18769

Merged
merged 1 commit into from Feb 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions Manual.md
Expand Up @@ -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.

Expand Down
16 changes: 0 additions & 16 deletions common/build-style/perl6-dist.sh

This file was deleted.

16 changes: 16 additions & 0 deletions common/build-style/raku-dist.sh
@@ -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=.
}