-
Notifications
You must be signed in to change notification settings - Fork 95
/
Makefile.PL
127 lines (102 loc) · 3.37 KB
/
Makefile.PL
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
package main;
require 5.006001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %parms = (
NAME => 'ack',
AUTHOR => 'Andy Lester <[email protected]>',
ABSTRACT => 'A grep-like program specifically for large source trees',
VERSION_FROM => 'Ack.pm',
PM => {
'Ack.pm' => '$(INST_LIBDIR)/App/Ack.pm',
'Repository.pm' => '$(INST_LIBDIR)/App/Ack/Repository.pm',
'Resource.pm' => '$(INST_LIBDIR)/App/Ack/Resource.pm',
'Plugin.pm' => '$(INST_LIBDIR)/App/Ack/Plugin.pm',
'Basic.pm' => '$(INST_LIBDIR)/App/Ack/Plugin/Basic.pm',
#'Tar.pm' => '$(INST_LIBDIR)/App/Ack/Plugin/Tar.pm',
},
EXE_FILES => [ 'ack' ],
PREREQ_PM => {
'Test::Harness' => 2.50, # Something reasonably newish
'Term::ANSIColor' => 0,
'Getopt::Long' => 0,
'Test::More' => 0,
'File::Next' => 0.40, # Handle files called "0"
'File::Basename' => 0,
'Pod::Usage' => 0,
},
MAN3PODS => {}, # no need for man pages for any of the .pm files
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'ack-1* nytprof*' },
);
if ( $ExtUtils::MakeMaker::VERSION =~ /^\d\.\d\d$/ and $ExtUtils::MakeMaker::VERSION > 6.30 ) {
$parms{LICENSE} = 'artistic_2';
}
if ( $ExtUtils::MakeMaker::VERSION ge '6.46' ) {
$parms{META_MERGE} = {
resources => {
homepage => 'http://betterthangrep.com/',
bugtracker => 'https://github.com/petdance/ack',
license => 'http://www.opensource.org/licenses/artistic-license-2.0.php',
repository => 'git://github.com/petdance/ack.git',
}
};
}
WriteMakefile( %parms );
package MY;
sub MY::postamble {
my $file_next_filename = qx(perldoc -l File::Next);
my $postamble = <<'MAKE_FRAG';
ACK = ack
BASE = ack-base
ACK_PM = Ack.pm
BASIC_PM = Basic.pm
REPOSITORY_PM = Repository.pm
RESOURCE_PM = Resource.pm
ALL_PM = $(ACK_PM) $(REPOSITORY_PM) $(RESOURCE_PM) $(BASIC_PM)
PERL_T = $(PERL) -T
.PHONY: tags critic
tags:
ctags -f tags --recurse --totals \
--exclude=blib \
--exclude=.git \
--exclude='*~' \
--exclude=$(ACK) \
--languages=Perl --langmap=Perl:+.t \
critic:
perlcritic -1 -q -profile perlcriticrc $(BASE) $(ALL_PM) t/*.t
tidy:
perltidy -b -pro=perltidyrc $(BASE) $(ALL_PM)
PROF_ARGS = -Mblib ./$(ACK) --noenv --color --group -w foo ~/parrot
timed: all
$(PERL) $(PROF_ARGS) >> /dev/null 2>&1
dprof: all
$(PERL) -d:DProf $(PROF_ARGS) >> /dev/null 2>&1
dprofpp -R
dproflb: all
$(PERL) -d:DProfLB $(PROF_ARGS) >> /dev/null 2>&1
dprofpp -R
fastprof: all
$(PERL) -d:FastProf $(PROF_ARGS) >> /dev/null 2>&1
fprofpp
profile: all
$(PERL) -d:Profile $(PROF_ARGS) >> /dev/null 2>&1
less prof.out
profiler: all
$(PERL) -MDevel::Profiler $(PROF_ARGS) >> /dev/null 2>&1
dprofpp -R
smallprof: all
$(PERL) -d:SmallProf $(PROF_ARGS) >> /dev/null 2>&1
sort -k 2nr,2 smallprof.out | less
nytprof: all
$(PERL) -d:NYTProf $(PROF_ARGS) >> /dev/null 2>&1
nytprofhtml
$(ACK) : $(BASE) $(ALL_PM) squash Makefile
$(PERL) squash ack-base File::Next $(ALL_PM) > $(ACK)
$(CHMOD) 0755 $(ACK)
$(PERL_T) -c $(ACK)
MAKE_FRAG
return $postamble;
}
1;