CGI web interface dependencies
[webpac2] / Makefile.PL
1 use strict;
2 use warnings;
3 #use ExtUtils::MakeMaker;
4 use inc::Module::Install;
5
6
7 name    'WebPAC';
8 version_from 'lib/WebPAC.pm';
9 license 'GPL';
10
11 requires        'YAML';
12 requires        'File::Slurp';
13 requires        'Log::Log4perl' => '1.02';
14 requires        'Cwd';
15 requires        'Storable';
16 #requires       'DBM::Deep';
17 #       'Template';
18 requires        'Time::HiRes';
19 requires        'File::Temp';
20 requires        'List::Util';
21 requires        'Encode';
22 requires        'LWP';
23 requires        'File::Path';
24 requires        'Biblio::Isis' => '0.24';
25 requires        'MARC::Fast' => '0.09';
26 requires        'List::Util';
27 requires        'MARC::Record' => '2.0';
28 requires        'Data::Dump';
29 requires        'MARC::Lint' => '1.43';
30 requires        'Business::ISBN' => '2.02';     # WebPAC::Normalize::ISBN
31 requires        'PPI';
32 requires        'XML::LibXML';
33 requires        'Pod::Usage';
34 requires        'Class::Accessor';
35 requires        'JSON';
36 requires        'File::Spec';
37 requires        'Sort::External';
38
39 features(
40         'WebPAC::Input::XML' => [
41                 -default => 0,
42                 'XML::Simple',
43                 'File::Find',
44         ],
45         'WebPAC::Input::PDF' => [
46                 -default => 0,
47                 'CAM::PDF',
48         ],
49         'WebPAC::Input::Excel' => [
50                 -default => 1,
51                 'Spreadsheet::ParseExcel',
52         ],
53         'WebPAC::Input::CSV' => [
54                 -default => 1,
55                 'Text::CSV',
56         ],
57         'WebPAC::Input::DBF' => [
58                 -default => 0,
59                 'XBase',
60         ],
61         'WebPAC::Output::Estraier' => [
62                 -default => 0,
63                 'Search::Estraier' => 0.06,
64         ],
65         'WebPAC::Output::Webpacus and WebPAC::Output::Jifty' => [
66                 -default => 0,
67                 'Jifty',
68         ],
69         'WebPAC::Output::Excel' => [
70                 -default => 1,
71                 'Spreadsheet::WriteExcel' => 2.14,
72         ],
73         'WebPAC::Output::KinoSearch' => [
74                 -default => 0,
75                 'KinoSearch::Simple',
76         ],
77         'WebPAC::Output::SWISH' => [
78                 -default => 1,
79                 'SWISH::API',
80         ],
81         'Parallel execution (probably broken)' => [
82                 -default => 0,
83                 'Proc::Queue',
84         ],
85         'CGI web interface' => [
86                 -default => 0,
87                 'Data::Page',
88                 'CGI',
89                 'CGI::Carp',
90                 'SWISH::API',
91         ],
92 );
93
94 build_requires 'Test::More';
95
96 clean_files('WebPAC-* pod2html Makefile tags');
97
98 auto_install;
99
100 WriteAll;
101
102 sub MY::postamble {
103         return <<'MAKE_MORE';
104
105 HTML_DIR=pod2html
106 # no need to include --limit here!
107 #profile_perl=./run.pl --only ffps --stats
108 #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
109 #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
110 profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
111
112
113 html: $(TO_INST_PM)
114         test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
115         mkdir "$(HTML_DIR)"
116
117         # add additional html documents
118         test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
119
120         test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
121
122         test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
123
124 changelog:
125         svn update && svn -v log > Changes
126
127 tags:
128         ctags *.p[ml] */*.p[ml] */*/*.p[ml]
129
130 sf:
131         svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@webpac.cvs.sourceforge.net:/cvsroot/webpac webpac2
132
133 config_yml:
134         test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
135         #perl -c conf/normalize/*.pl
136         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 {}
137
138 run: config_yml
139         rm -f log
140         ./run.pl --clean --limit 100
141
142 full: config_yml
143         rm -f log
144         ./run.pl
145
146 profile: all
147         perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
148
149 profile2:
150         perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
151
152 MAKE_MORE
153 }