From e5e8ab7084cec84aedd1b76806b888b57c62a576 Mon Sep 17 00:00:00 2001 From: Pedro Melo Date: Fri, 25 Jul 2008 14:14:37 +0100 Subject: [PATCH] Added initial version of a Build.PL You can use `cpan .` to install the module and all the dependencies now. Signed-off-by: Pedro Melo --- Build.PL | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Build.PL diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..1cccf05 --- /dev/null +++ b/Build.PL @@ -0,0 +1,24 @@ +use strict; +use warnings; +use Module::Build; + +my $builder = Module::Build->new( + module_name => 'CIL', + license => 'perl', + dist_author => 'Pedro Melo ', + dist_version_from => 'lib/CIL.pm', + build_requires => { + 'Test::More' => 0, + 'Term::CallEditor' => 0, + 'File::Touch' => 0, + 'File::Glob' => 0, + 'File::Basename' => 0, + 'MIME::Base64' => 0, + 'Email::Find' => 0, + + }, + add_to_cleanup => [ 'CIL-*' ], + create_makefile_pl => 'traditional', +); + +$builder->create_build_script(); -- 2.39.5