added --parallel option to utilize multiple CPUs in machine
[webpac2] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'WebPAC',
7     AUTHOR              => 'Dobrica Pavlinusic <dpavlin@rot13.org>',
8     VERSION_FROM        => 'lib/WebPAC.pm',
9     ABSTRACT_FROM       => 'lib/WebPAC.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More' => 0,
13         'YAML' => 0,
14         'File::Slurp' => 0,
15         'Log::Log4perl' => 1.02,
16         'Data::Dumper' => 0,
17         'Cwd' => 0,
18         'Storable' => 0,
19         'DBM::Deep' => 0,
20         'Template' => 0,
21         'Time::HiRes' => 0,
22         'File::Temp' => 0,
23         'List::Util' => 0,
24         'Encode' => 0,
25         'LWP' => 0,
26         'File::Path' => 0,
27         'Biblio::Isis' => 0.22,
28         'MARC::Fast' => 0.02,
29         'Search::Estraier' => 0.06,
30         'List::Util' => 0,
31         'Spreadsheet::ParseExcel', => 0,
32         'MARC::Record' => 2.0,
33         'Data::Dump' => 0,
34         'MARC::Lint' => 0,
35         'Proc::Queue' => 0,
36     },
37     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
38     clean               => { FILES => 'WebPAC-* pod2html Makefile tags' },
39 );
40
41 sub MY::postamble {
42         return <<'MAKE_MORE';
43
44 HTML_DIR=pod2html
45 profile_perl=./run.pl
46
47 html: $(TO_INST_PM)
48         test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
49         mkdir "$(HTML_DIR)"
50
51         # add additional html documents
52         test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
53
54         test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
55
56         test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
57
58 changelog:
59         svn update && svn -v log > Changes
60
61 tags:
62         ctags *.p[ml] */*.p[ml] */*/*.p[ml]
63
64 sf:
65         svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@cvs.sourceforge.net:/cvsroot/webpac webpac2
66
67 config_yml:
68         test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
69         #perl -c conf/normalize/*.pl
70         perl -c conf/normalize/*.pl 2>&1 | grep 'conf/normalize' | grep -v 'OK' | sed -e 's#^.*conf/normalize#conf/normalize#' -e 's#,##' | awk '{ print "+" $3 " " $1 }' | xargs -i echo vi {}
71
72 run: config_yml
73         rm -f log
74         ./run.pl --clean --limit 100
75
76 full: config_yml
77         rm -f log
78         ./run.pl
79
80 profile:
81         perl -d:DProf $(profile_perl) --limit 500 && dprofpp > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
82
83 profile2:
84         perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
85
86 MAKE_MORE
87 }