Added git reference, other changes for package release.
[Net-Amazon-S3-Policy.git] / Build.PL
blob286aaec01ce90a217a6f4059e358360ed5cb0f47
1 use strict;
2 use warnings;
3 use Module::Build;
5 my $builder = Module::Build->new(
6    module_name       => 'Net::Amazon::S3::Policy',
7    license           => 'perl',
8    dist_author       => 'Flavio Poletti <flavio [at] polettix [dot] it>',
9    dist_version_from => 'lib/Net/Amazon/S3/Policy.pm',
10    requires          => {
11       'Test::More' => 0,
12       'version'    => 0,
13       'JSON'       => 0,
14       'perl'       => '5.8.0',
15    },
16    add_to_cleanup => ['Net-Amazon-S3-Policy-*'],
19 $builder->create_build_script();