RT notifier: parse templates without header correctly
[openxpki.git] / trunk / clients / perl / OpenXPKI-Client-SCEP / Build.PL
blobf50a8211e4d5f4d48c07ddbf34c5400e7cd82ebf
1 use strict;
2 use warnings;
3 use Module::Build;
5 my $builder = Module::Build->new(
6     module_name         => 'OpenXPKI::Client::SCEP',
7     license             => 'perl',
8     dist_author         => 'Martin Bartosch <m.bartosch@cynops.de>',
9     dist_version_from   => 'lib/OpenXPKI/Client/SCEP.pm',
10     requires => {
11         'Test::More' => 0,
12         'version'    => 0,
13     },
14     add_to_cleanup      => [ 'OpenXPKI-Client-SCEP-*' ],
17 $builder->create_build_script();