/[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 1053 - (hide annotations)
Mon Nov 19 20:26:03 2007 UTC (16 years, 5 months ago) by dpavlin
Original Path: trunk/Makefile.PL
File MIME type: text/plain
File size: 2933 byte(s)
 r1643@llin:  dpavlin | 2007-11-19 21:26:05 +0100
 convert Makefile.PL to real Module::Install style with partly optinal
 modules

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     version '2.32';
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 'Spreadsheet::ParseExcel';
28     requires 'MARC::Record' => '2.0';
29     requires 'Data::Dump';
30     requires 'MARC::Lint' => '1.43';
31     requires 'Business::ISBN' => '2.02'; # WebPAC::Normalize::ISBN
32     requires 'Proc::Queue';
33     requires 'PPI';
34     requires 'XML::LibXML';
35     requires 'Pod::Usage';
36     requires 'Class::Accessor';
37     requires 'JSON';
38     requires 'File::Spec';
39     requires 'Sort::External';
40    
41     features(
42     'WebPAC::Input::XML' => [
43     -default => 0,
44     recommends('XML::Simple'),
45     recommends('File::Find'),
46     ],
47 dpavlin 1 );
48    
49 dpavlin 1053 features(
50     'WebPAC::Output::Estraier' => [
51     -default => 0,
52     recommends('Search::Estraier' => 0.06),
53     ],
54     );
55    
56    
57     build_requires 'Test::More';
58    
59     clean_files('WebPAC-* pod2html Makefile tags');
60    
61 dpavlin 950 auto_install;
62    
63 dpavlin 1053 WriteAll;
64    
65 dpavlin 1 sub MY::postamble {
66     return <<'MAKE_MORE';
67    
68     HTML_DIR=pod2html
69 dpavlin 854 # no need to include --limit here!
70     #profile_perl=./run.pl --only ffps --stats
71     #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
72     #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
73     profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
74 dpavlin 1
75 dpavlin 854
76 dpavlin 1 html: $(TO_INST_PM)
77 dpavlin 534 test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
78     mkdir "$(HTML_DIR)"
79 dpavlin 1
80 dpavlin 534 # add additional html documents
81 dpavlin 573 test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
82 dpavlin 1
83 dpavlin 534 test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
84    
85     test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
86    
87 dpavlin 1 changelog:
88     svn update && svn -v log > Changes
89    
90     tags:
91 dpavlin 7 ctags *.p[ml] */*.p[ml] */*/*.p[ml]
92 dpavlin 1
93 dpavlin 23 sf:
94 dpavlin 891 svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@webpac.cvs.sourceforge.net:/cvsroot/webpac webpac2
95 dpavlin 23
96 dpavlin 301 config_yml:
97 dpavlin 145 test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
98 dpavlin 500 #perl -c conf/normalize/*.pl
99     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 {}
100 dpavlin 23
101 dpavlin 301 run: config_yml
102 dpavlin 310 rm -f log
103 dpavlin 301 ./run.pl --clean --limit 100
104    
105 dpavlin 307 full: config_yml
106 dpavlin 310 rm -f log
107 dpavlin 307 ./run.pl
108 dpavlin 301
109 dpavlin 854 profile: all
110     perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
111 dpavlin 495
112     profile2:
113     perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
114    
115 dpavlin 1 MAKE_MORE
116     }

  ViewVC Help
Powered by ViewVC 1.1.26