--- trunk/Makefile.PL 2005/07/16 22:57:26 12 +++ trunk/Makefile.PL 2005/12/27 23:24:36 331 @@ -9,8 +9,8 @@ ABSTRACT_FROM => 'lib/WebPAC.pm', PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, - 'Config::Tiny' => 0, + 'Test::More' => 0, + 'YAML' => 0, 'File::Slurp' => 0, 'Log::Log4perl' => 0, 'Data::Dumper' => 0, @@ -19,6 +19,15 @@ 'Storable' => 0, 'DBM::Deep' => 0, 'XML::Simple' => 0, + 'Template' => 0, + 'Time::HiRes' => 0, + 'File::Temp' => 0, + 'List::Util' => 0, + 'Encode' => 0, + 'LWP' => 0, + 'File::Path' => 0, + 'Biblio::Isis' => 0.13, + 'MARC::Fast' => 0.02, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'WebPAC-* pod2html Makefile tags' }, @@ -41,5 +50,19 @@ tags: ctags *.p[ml] */*.p[ml] */*/*.p[ml] +sf: + svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@cvs.sourceforge.net:/cvsroot/webpac webpac2 + +config_yml: + test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true + +run: config_yml + rm -f log + ./run.pl --clean --limit 100 + +full: config_yml + rm -f log + ./run.pl + MAKE_MORE }