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