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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
#!/usr/bin/perl
use 5.006001;
use strict;
use inc::Module::Install;
name 'PAR-Packer';
abstract 'PAR Packager';
all_from 'lib/PAR/Packer.pm';
perl_version '5.006001';
requires 'File::Temp' => 0.05;
requires 'Compress::Zlib' => ($^O eq 'MSWin32') ? 1.16 : 1.30;
requires 'Archive::Zip' => 1.00;
requires 'Module::ScanDeps' => 0.96;
requires 'PAR::Dist' => 0.22;
requires 'PAR' => '1.000';
requires 'Getopt::ArgvFile' => 1.07;
if ($^O eq 'MSWin32') {
requires 'Parse::Binary' => 0.04;
requires 'Win32::Exe' => 0.14;
requires 'Win32::Process';
}
if (can_use('Crypt::OpenPGP') or can_run('gpg')) {
my $has_sha1 = (
can_use('Digest::SHA1') or
can_use('Digest::SHA') or
can_use('Digest::SHA::PurePerl')
);
feature 'Digital signature support',
recommends
'Digest',
($has_sha1 ? () : (can_cc() ? 'Digest::SHA'
: 'Digest::SHA::PurePerl')),
'Module::Signature';
}
include_deps 'Test::More';
no_index directory => 'contrib';
auto_provides;
repository 'http://svn.openfoundry.org/par/PAR-Packer/trunk';
par_base 'SMUELLER';
if (defined($ENV{PERL5LIB}) || defined($ENV{PERLLIB})) {
warn <<'WARNING';
*** 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.
WARNING
}
par_prehook();
#WriteAll sign => 1;
WriteAll sign => 0;
par_posthook();
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";
}
# XXX: this branch is currently not entered
if ($cc and $par) {
my $answer = prompt(
"*** Pre-built PAR-Packer package found. Use it instead of recompiling [y/N]?"
);
if ($answer !~ /^[Yy]/) {
load('preamble')->{preamble} = '';
$par = '';
}
}
my @bin = ("script/parl$exe", "myldr/par$exe");
push @bin, ("script/parldyn$exe", "myldr/static$exe") if $dynperl;
$FindBin::Bin = '.' unless -e "$FindBin::Bin/Makefile.PL";
my $par_exe = "$FindBin::Bin/$bin[1]";
if ($par) {
open my $fh, '>', $par_exe or die "Cannot write to $par_exe";
close $fh;
}
elsif (-f $par_exe and not -s $par_exe) {
unlink $par_exe;
}
clean_files(@bin) if $par or $cc;
# Do not run 10parl-generation tests in case of a pre built .par (doesn't work)
my $pgentest = (!$par and $cc) ? ' t/10-parl-generation.t ' : '';
my $tests = qq(t/00-pod.t$pgentest t/20-pp.t t/30-current_exec.t t/40-packer_cd_option.t);
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',
(!$par and $cc) ? (
"script/parl$exe",
$dynperl ? (
"script/parldyn$exe",
) : (),
) : (),
],
DIR => [
(!$par and $cc) ? (
'myldr'
) : (),
],
NEEDS_LINKING => 1,
test => { TESTS => $tests },
);
}
sub par_posthook {
my $exe = $Config::Config{_exe};
return unless $exe eq '.exe';
open my $in, '<', "$FindBin::Bin/Makefile" or return;
open my $out, '>', "$FindBin::Bin/Makefile.new" or return;
while (<$in>) {
next if /^\t\$\(FIXIN\) .*\Q$exe\E$/;
next if /^\@\[$/ or /^\]$/;
print $out $_;
}
close $out;
close $in;
unlink "$FindBin::Bin/Makefile";
rename "$FindBin::Bin/Makefile.new" => "$FindBin::Bin/Makefile";
}
1;
|