:%s/^ /\t/
[hostuuid.git] / Makefile.PL
blob7facf8f1e3b3f297f8a478476f1e531b0422e39e
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6         NAME                => 'hostuuid',
7         AUTHOR              => q{Richard Hartmann <richih.mailinglist@gmail.com>},
8         VERSION_FROM        => 'hostuuid',
9         ABSTRACT_FROM       => 'hostuuid',
10         INSTALLBIN          => '/usr/bin',
11         INSTALLMAN1DIR      => '/usr/share/man/man1/',
12         EXE_FILES           => [qw(hostuuid)],
13         ($ExtUtils::MakeMaker::VERSION >= 6.3002
14                 ? ('LICENSE'=> 'gpl')
15                 : ()),
16         PL_FILES            => {},
17         PREREQ_PM           => {},
18         dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
19         clean               => { FILES => 'hostuuid-*' },