File: Makefile.PL

package info (click to toggle)
libpar-packer-perl 1.036-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,280 kB
  • ctags: 543
  • sloc: perl: 14,540; ansic: 1,017; makefile: 32
file content (121 lines) | stat: -rw-r--r-- 3,471 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/perl
use 5.008001;
use strict;
BEGIN { push @INC, '.' unless $INC[-1] eq '.' }
use inc::Module::Install 0.92;

name        'PAR-Packer';
abstract    'PAR Packager';
all_from    'lib/PAR/Packer.pm';

perl_version '5.008001';
configure_requires 'ExtUtils::Embed';
requires    'File::Temp'         => '0.05';
requires    'Compress::Zlib'     => ($^O eq 'MSWin32') ? '1.16' : '1.30';
requires    'IO::Compress::Gzip' => 0;
requires    'Archive::Zip'       => '1.02';
requires    'Module::ScanDeps'   => '1.21';
requires    'PAR::Dist'          => '0.22';
requires    'PAR'                => '1.014';
requires    'Text::ParseWords'   => 0;
requires    'Getopt::ArgvFile'   => '1.07';

if ($^O eq 'MSWin32') {
    requires  'Parse::Binary'    => '0.04';
    requires  'Win32::Exe'       => '0.17';
    requires  'Win32::Process'   => 0;
}

# for tkpp
recommends  'Tk'                 => 0;
recommends  'Tk::ColoredButton'  => 0;
recommends  'Tk::EntryCheck'     => 0;
recommends  'Tk::Getopt'         => 0;

# for digital signature support
recommends 'Digest'              => 0;
recommends 'Digest::SHA'         => 0;
recommends 'Module::Signature'   => 0;

auto_provides;
no_index    directory           => 'contrib';

license     'perl_5';
resources   repository          => 'https://github.com/rschupp/PAR-Packer',
            MailingList         => 'par@perl.org';

par_base    'SMUELLER';

if ($] == 5.010000) {
    # 5.10.0 breaks how PAR intercepts loading of shared libraries
    warn <<'...';
*** Perl version 5.10.0 is not supported.
    Please upgrade to 5.10.1 or better.
...
    exit 0;
}

if (defined($ENV{PERL5LIB}) || defined($ENV{PERLLIB})) {
    warn <<'...';
*** You have extra Perl library paths set in your environment.
    Please note that these paths (set with PERL5LIB or PERLLIB)
    are not honored by perl when running under taint mode, which
    may lead to problems. This is a limitation (by design) of
    Perl, not of PAR::Packer; but some of the problems may
    manifest here during installation.
...
}

par_prehook();
WriteAll sign => 0;

my %no_parl  = ();

use strict; use warnings;
sub par_prehook {
    my $bork = $no_parl{$^O};
    my $cc;
    $cc = can_cc unless $bork;
    my $par;
    $par = fetch_par('', '', !$cc) unless ($cc or $bork);
    my $exe  = '';
    my $dynperl = $Config::Config{useshrplib} && ($Config::Config{useshrplib} ne 'false');

    if ($bork) {
        warn "Binary loading known to fail on $^O; won't generate 'script/parl$exe'!\n";
    }
    elsif (!$par and !$cc) {
        warn "No compiler found, won't generate 'script/parl$exe'!\n";
    }


    # Do not run 10parl-generation tests in case of a pre built .par (doesn't work)
    my %tests = map { $_ => 1 } <t/*.t>;
    delete $tests{'t/10-parl-generation.t'} unless (!$par and $cc);

    makemaker_args(
        MAN1PODS		=> {
            'script/par.pl'	=> 'blib/man1/par.pl.1p',
            'script/pp'	        => 'blib/man1/pp.1p',
            'script/tkpp'       => 'blib/man1/tkpp.1p',
          ($par or $cc) ? (
            'script/parl.pod'   => 'blib/man1/parl.1p',
          ) : (),
        },
        EXE_FILES		=> [
            'script/par.pl',
            'script/pp',
            'script/tkpp',
        ],
        DIR                     => [
          (!$par and $cc) ? (
            'myldr'
          ) : (),
        ],
        NEEDS_LINKING	        => 1,
        test => { TESTS => join(" ", sort keys %tests) },
    );
}


1;