1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    NAME         => 'Crypt::Salt',
6    VERSION_FROM => 'lib/Crypt/Salt.pm', # finds $VERSION
7    PREREQ_PM    => {
8                     'Test::Simple' => 0.44,
9                    },
10    ( $] >= 5.005 ?
11      (
12        AUTHOR       => 'Jonathan Steinert (hachi@cpan.org)',
13        ABSTRACT_FROM => 'lib/Crypt/Salt.pm',
14      ) : ()),
15    dist => {
16      COMPRESS => 'gzip -9',
17      SUFFIX   => 'gz',
18      PREOP    => q{pod2text lib/Crypt/Salt.pm > ./$(DISTNAME)-$(VERSION)/README},
19    },
20);
21