Skip to content

Commit

Permalink
[install] install parrotbug [devel]bin asis
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Dec 3, 2012
1 parent 0c01639 commit 9c32ec0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tools/dev/install_dev_files.pl
Expand Up @@ -95,7 +95,7 @@ =head1 SEE ALSO
my $parrotdir = $options{versiondir};

# Set up transforms on filenames
my(@transformorder) = (qw(lib share include src doc), '^(tools|VERSION)', '^compilers');
my(@transformorder) = (qw(lib share include bin src doc), '^(tools|VERSION)', '^compilers');
my(%metatransforms) = (
lib => {
ismeta => 1,
Expand Down Expand Up @@ -127,6 +127,18 @@ =head1 SEE ALSO
return($filehash);
},
},
bin => {
ismeta => 1,
optiondir => 'bin',
transform => sub {
my($filehash) = @_;
if ($filehash->{Dest} ne 'parrotbug') {
$filehash->{Installable} = $filehash->{Dest} =~ s/^installable_//;
}
return($filehash);
},
isbin => 1,
},
src => {
ismeta => 1,
optiondir => 'src',
Expand Down

0 comments on commit 9c32ec0

Please sign in to comment.