/[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

Annotation of /trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1366 - (hide annotations)
Thu Dec 15 21:40:02 2011 UTC (12 years, 4 months ago) by dpavlin
File MIME type: text/plain
File size: 3914 byte(s)
import OAI repository
1 dpavlin 1 use strict;
2     use warnings;
3 dpavlin 950 #use ExtUtils::MakeMaker;
4     use inc::Module::Install;
5 dpavlin 1
6 dpavlin 1022
7 dpavlin 1053 name 'WebPAC';
8 dpavlin 1104 version_from 'lib/WebPAC.pm';
9 dpavlin 1053 license 'GPL';
10    
11     requires 'YAML';
12     requires 'File::Slurp';
13     requires 'Log::Log4perl' => '1.02';
14     requires 'Cwd';
15     requires 'Storable';
16 dpavlin 1100 #requires 'DBM::Deep';
17 dpavlin 1053 # '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 dpavlin 1339 requires 'MARC::Fast' => '0.11';
26 dpavlin 1053 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 dpavlin 1096 'XML::Simple',
42     'File::Find',
43 dpavlin 1053 ],
44 dpavlin 1054 'WebPAC::Input::PDF' => [
45     -default => 0,
46 dpavlin 1096 'CAM::PDF',
47 dpavlin 1054 ],
48 dpavlin 1097 'WebPAC::Input::Excel' => [
49     -default => 1,
50     'Spreadsheet::ParseExcel',
51     ],
52 dpavlin 1186 'WebPAC::Input::CSV' => [
53     -default => 1,
54     'Text::CSV',
55     ],
56 dpavlin 1116 'WebPAC::Input::DBF' => [
57     -default => 0,
58     'XBase',
59     ],
60 dpavlin 1366 'WebPAC::Input::OAI' => [
61     -default => 0,
62     'HTTP::OAI',
63     ],
64 dpavlin 1053 'WebPAC::Output::Estraier' => [
65     -default => 0,
66 dpavlin 1096 'Search::Estraier' => 0.06,
67 dpavlin 1053 ],
68 dpavlin 1068 'WebPAC::Output::Webpacus and WebPAC::Output::Jifty' => [
69     -default => 0,
70 dpavlin 1096 'Jifty',
71 dpavlin 1068 ],
72     'WebPAC::Output::Excel' => [
73 dpavlin 1100 -default => 1,
74 dpavlin 1096 'Spreadsheet::WriteExcel' => 2.14,
75 dpavlin 1068 ],
76 dpavlin 1115 'WebPAC::Output::KinoSearch' => [
77 dpavlin 1145 -default => 0,
78 dpavlin 1115 'KinoSearch::Simple',
79     ],
80 dpavlin 1145 'WebPAC::Output::SWISH' => [
81     -default => 1,
82     'SWISH::API',
83     ],
84 dpavlin 1196 'WebPAC::Output::CouchDB' => [
85     -default => 0,
86     'Net::CouchDb',
87     ],
88 dpavlin 1323 'WebPAC::Output::Sorted' => [
89     -default => 0,
90     'Sort::External',
91     ],
92 dpavlin 1356 'WebPAC::Output::Riak' => [
93     -default => 0,
94     'Net::Riak',
95     ],
96 dpavlin 1100 'Parallel execution (probably broken)' => [
97     -default => 0,
98     'Proc::Queue',
99     ],
100 dpavlin 1195 'CGI web interface' => [
101     -default => 0,
102     'Data::Page',
103     'CGI',
104     'CGI::Carp',
105     'SWISH::API',
106 dpavlin 1250 'Text::Unaccent::PurePerl',
107     'HTML::FillInForm::Lite',
108 dpavlin 1195 ],
109 dpavlin 1053 );
110    
111     build_requires 'Test::More';
112    
113     clean_files('WebPAC-* pod2html Makefile tags');
114    
115 dpavlin 950 auto_install;
116    
117 dpavlin 1053 WriteAll;
118    
119 dpavlin 1 sub MY::postamble {
120     return <<'MAKE_MORE';
121    
122     HTML_DIR=pod2html
123 dpavlin 854 # no need to include --limit here!
124     #profile_perl=./run.pl --only ffps --stats
125     #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
126     #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
127     profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
128 dpavlin 1
129 dpavlin 854
130 dpavlin 1 html: $(TO_INST_PM)
131 dpavlin 534 test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
132     mkdir "$(HTML_DIR)"
133 dpavlin 1
134 dpavlin 534 # add additional html documents
135 dpavlin 573 test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
136 dpavlin 1
137 dpavlin 534 test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
138    
139     test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
140    
141 dpavlin 1 changelog:
142     svn update && svn -v log > Changes
143    
144     tags:
145 dpavlin 7 ctags *.p[ml] */*.p[ml] */*/*.p[ml]
146 dpavlin 1
147 dpavlin 23 sf:
148 dpavlin 891 svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@webpac.cvs.sourceforge.net:/cvsroot/webpac webpac2
149 dpavlin 23
150 dpavlin 301 config_yml:
151 dpavlin 145 test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
152 dpavlin 500 #perl -c conf/normalize/*.pl
153     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 {}
154 dpavlin 23
155 dpavlin 301 run: config_yml
156 dpavlin 310 rm -f log
157 dpavlin 301 ./run.pl --clean --limit 100
158    
159 dpavlin 307 full: config_yml
160 dpavlin 310 rm -f log
161 dpavlin 307 ./run.pl
162 dpavlin 301
163 dpavlin 854 profile: all
164     perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
165 dpavlin 495
166     profile2:
167     perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
168    
169 dpavlin 1 MAKE_MORE
170     }

  ViewVC Help
Powered by ViewVC 1.1.26