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'      => 'gsh',
6    'VERSION_FROM' => 'gsh', # finds $VERSION
7    'ABSTRACT' => "Distributed Global Hosts tool",
8    dist         => { COMPRESS => 'gzip -9f', SUFFIX => '.tar.gz', },
9    ($] < 5.005 ? () : (
10        AUTHOR  => 'Kees Cook <kees@outflux.net>'
11    )),
12    'EXE_FILES' => [qw(gsh ghosts)],
13);
14
15