better utf8 test records
[webpac2] / Makefile.PL
index 5c0807f..4151a4c 100644 (file)
@@ -5,7 +5,7 @@ use inc::Module::Install;
 
 
 name   'WebPAC';
-version        '2.34';
+version_from 'lib/WebPAC.pm';
 license        'GPL';
 
 requires       'YAML';
@@ -50,6 +50,14 @@ features(
                -default => 1,
                'Spreadsheet::ParseExcel',
        ],
+       'WebPAC::Input::CSV' => [
+               -default => 1,
+               'Text::CSV',
+       ],
+       'WebPAC::Input::DBF' => [
+               -default => 0,
+               'XBase',
+       ],
        'WebPAC::Output::Estraier' => [
                -default => 0,
                'Search::Estraier' => 0.06,
@@ -62,10 +70,31 @@ features(
                -default => 1,
                'Spreadsheet::WriteExcel' => 2.14,
        ],
+       'WebPAC::Output::KinoSearch' => [
+               -default => 0,
+               'KinoSearch::Simple',
+       ],
+       'WebPAC::Output::SWISH' => [
+               -default => 1,
+               'SWISH::API',
+       ],
+       'WebPAC::Output::CouchDB' => [
+               -default => 0,
+               'Net::CouchDb',
+       ],
        'Parallel execution (probably broken)' => [
                -default => 0,
                'Proc::Queue',
        ],
+       'CGI web interface' => [
+               -default => 0,
+               'Data::Page',
+               'CGI',
+               'CGI::Carp',
+               'SWISH::API',
+               'Text::Unaccent::PurePerl',
+               'HTML::FillInForm::Lite',
+       ],
 );
 
 build_requires 'Test::More';