/[webpac2]/branches/Sack/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 /branches/Sack/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1354 - (hide annotations)
Sat Nov 13 01:03:33 2010 UTC (13 years, 5 months ago) by dpavlin
File MIME type: text/plain
File size: 3806 byte(s)
store rows in Riak

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

  ViewVC Help
Powered by ViewVC 1.1.26