]> Dogcows Code - chaz/p5-Alien-ZMQ/blob - Build.PL
require perl 5.10.1 for File::Path::make_path
[chaz/p5-Alien-ZMQ] / Build.PL
1 use v5.10.1;
2 use warnings FATAL => 'all';
3 use strict;
4
5 use lib 'inc';
6 use File::Path qw/make_path/;
7 use My::Build;
8
9 # prevent warnings about missing share directory
10 make_path("share");
11
12 my $builder = My::Build->new(
13 ##{ $plugin->get_prereqs ##}
14 ##{ $plugin->get_default(qw/dist_name license dist_abstract/) ##}
15 ##{ $plugin->get_default(qw/dist_author/) ##}
16 dist_version_from => "lib/Alien/ZMQ.pm",
17 share_dir => "share",
18 );
19 $builder->notes('zmq-version', '3.2.2');
20 $builder->notes('zmq-sha1', '0e8734c773b6a757b474c16fc3c517993ba47283');
21
22 $builder->create_build_script;
This page took 0.030387 seconds and 4 git commands to generate.