aboutsummaryrefslogtreecommitdiffstats
path: root/Data-YAML-0.0.6/Makefile.PL
blob: d04335db1b55bbb4e7ca7c538190623fb2a55b65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;
use ExtUtils::MakeMaker;

eval 'use ExtUtils::MakeMaker::Coverage';
warn "Optional ExtUtils::MakeMaker::Coverage not available\n" if $@;

WriteMakefile(
  ( MM->can( 'signature_target' ) ? ( SIGN => 1 ) : () ),
  NAME          => 'Data::YAML',
  AUTHOR        => 'Andy Armstrong <andy@hexten.net>',
  LICENSE       => 'perl',
  VERSION_FROM  => 'lib/Data/YAML.pm',
  ABSTRACT_FROM => 'lib/Data/YAML.pm',
  PL_FILES      => {},
  PREREQ_PM     => {
    'Test::More' => 0,
    'version'    => 0,
  },
  dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  clean => { FILES    => 'Data-YAML-*' },
);