Codebase list liblingua-en-sentence-perl / f1bdc826-ea1c-4411-8046-5ed281434f28/main Build.PL
f1bdc826-ea1c-4411-8046-5ed281434f28/main

Tree @f1bdc826-ea1c-4411-8046-5ed281434f28/main (Download .tar.gz)

Build.PL @f1bdc826-ea1c-4411-8046-5ed281434f28/mainraw · history · blame

use Module::Build;

Module::Build -> new
(
 module_name    => 'Lingua::EN::Sentence',
 license        => 'perl',
 dist_abstract  => "Split text into sentences",
 dist_author    => 'Shlomo Yona, Kim Ryan <kimryan at cpan org>',
 build_requires =>
 {
 	Test::More => 0.94,
 },
 configure_requires =>
 {
  Module::Build => 0.3800,
 },
 requires =>
 {
  'perl'   => '5.10.0',
  warnings => '1.06'
 },
 meta_merge =>
 {
    resources =>
    {
            repository => 'https://github.com/kimryan/Lingua-EN-Sentence'
    }
  }
) -> create_build_script();