]> Dogcows Code - chaz/p5-Alien-ZMQ/blob - Build.PL
do not print Ø for the benefit of unicode-unaware terminals
[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.3');
19 $builder->notes('zmq-sha1', '6857a3a0e908eca58f7c0f90e2ba4695f6700957');
20
21 $builder->create_build_script;
This page took 0.029355 seconds and 4 git commands to generate.