aboutsummaryrefslogtreecommitdiff
path: root/tools/build/bin-install.pl
blob: 1b47942ebc0d3e26ce0aceb89f5879d5eec73592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#! perl

use strict;
use warnings;
use File::Spec;

my ($p6bin, $dest, $post, @files) = @ARGV;
die "Usage: $0 <perl6_binary> <destination_path> <source_files>"
    unless $p6bin && $dest;

for my $filename (@files) {
    open my $IN, '<', $filename
        or die "Cannot read file '$filename' for installing it: $!";
    my $basename = (File::Spec->splitpath($filename))[2];
    open my $OUT, '>', "$dest/$basename"
        or die "Cannot write file '$dest/$basename' for installing it: $!";
    while (<$IN>) {
        if ($. == 1 && /^#!/) {
            print { $OUT } "#!$p6bin\n";
        }
        else {
            print { $OUT } $_;
        }
    }
    close $OUT or die "Error while closing file '$dest/$basename': $!";
    close $IN;
    chmod 0755, "$dest/$basename";
    open my $ALIAS, '>', "$dest/$basename-$post"
        or die "Cannot write file '$dest/$basename-$post' for installing it: $!";
    printf { $ALIAS } <<'EOA', $p6bin, $dest, $basename;
#!/bin/sh
exec %s %s/%s "$@"
EOA
    close $ALIAS or die "Error while closing file '$dest/$basename-$post': $!";
    chmod 0755, "$dest/$basename-$post";
}