root/perl/DBIx-Class-Indexer-KinoSearch/trunk/Build.PL

Revision 340, 499 bytes (checked in by brian.cassidy, 2 years ago)

dist structure

Line 
1 use strict;
2
3 use Module::Build;
4
5 my $build = Module::Build->new(
6     module_name        => 'DBIx::Class::Indexer::KinoSearch',
7     dist_author        => 'Brian Cassidy <bricas@cpan.org>',
8     license            => 'perl',
9     create_readme      => 1,
10     create_makefile_pl => 'traditional',
11     requires           => {
12         'DBIx::Class::Indexed' => 0,
13         'KinoSearch'           => '0.15',
14     },
15     build_requires     => {
16         'Test::More' => 0
17     }
18 );
19
20 $build->create_build_script;
Note: See TracBrowser for help on using the browser.