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