/[webpac2]/trunk/Makefile.PL
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1323 - (show annotations)
Tue Jan 26 14:26:34 2010 UTC (14 years, 3 months ago) by dpavlin
File MIME type: text/plain
File size: 3786 byte(s)
make Webpac::Output::Sorted optional
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
38 features(
39 'WebPAC::Input::XML' => [
40 -default => 0,
41 'XML::Simple',
42 'File::Find',
43 ],
44 'WebPAC::Input::PDF' => [
45 -default => 0,
46 'CAM::PDF',
47 ],
48 'WebPAC::Input::Excel' => [
49 -default => 1,
50 'Spreadsheet::ParseExcel',
51 ],
52 'WebPAC::Input::CSV' => [
53 -default => 1,
54 'Text::CSV',
55 ],
56 'WebPAC::Input::DBF' => [
57 -default => 0,
58 'XBase',
59 ],
60 'WebPAC::Output::Estraier' => [
61 -default => 0,
62 'Search::Estraier' => 0.06,
63 ],
64 'WebPAC::Output::Webpacus and WebPAC::Output::Jifty' => [
65 -default => 0,
66 'Jifty',
67 ],
68 'WebPAC::Output::Excel' => [
69 -default => 1,
70 'Spreadsheet::WriteExcel' => 2.14,
71 ],
72 'WebPAC::Output::KinoSearch' => [
73 -default => 0,
74 'KinoSearch::Simple',
75 ],
76 'WebPAC::Output::SWISH' => [
77 -default => 1,
78 'SWISH::API',
79 ],
80 'WebPAC::Output::CouchDB' => [
81 -default => 0,
82 'Net::CouchDb',
83 ],
84 'WebPAC::Output::Sorted' => [
85 -default => 0,
86 'Sort::External',
87 ],
88 'Parallel execution (probably broken)' => [
89 -default => 0,
90 'Proc::Queue',
91 ],
92 'CGI web interface' => [
93 -default => 0,
94 'Data::Page',
95 'CGI',
96 'CGI::Carp',
97 'SWISH::API',
98 'Text::Unaccent::PurePerl',
99 'HTML::FillInForm::Lite',
100 ],
101 );
102
103 build_requires 'Test::More';
104
105 clean_files('WebPAC-* pod2html Makefile tags');
106
107 auto_install;
108
109 WriteAll;
110
111 sub MY::postamble {
112 return <<'MAKE_MORE';
113
114 HTML_DIR=pod2html
115 # no need to include --limit here!
116 #profile_perl=./run.pl --only ffps --stats
117 #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
118 #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
119 profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
120
121
122 html: $(TO_INST_PM)
123 test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
124 mkdir "$(HTML_DIR)"
125
126 # add additional html documents
127 test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
128
129 test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
130
131 test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
132
133 changelog:
134 svn update && svn -v log > Changes
135
136 tags:
137 ctags *.p[ml] */*.p[ml] */*/*.p[ml]
138
139 sf:
140 svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@webpac.cvs.sourceforge.net:/cvsroot/webpac webpac2
141
142 config_yml:
143 test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
144 #perl -c conf/normalize/*.pl
145 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 {}
146
147 run: config_yml
148 rm -f log
149 ./run.pl --clean --limit 100
150
151 full: config_yml
152 rm -f log
153 ./run.pl
154
155 profile: all
156 perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
157
158 profile2:
159 perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
160
161 MAKE_MORE
162 }

  ViewVC Help
Powered by ViewVC 1.1.26