]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blob - Makefile.PL
708db536e93073299df0e0788f139da65788b8a1
[perl/modules/Linux-SysInfo.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Linux::SysInfo',
7     AUTHOR              => 'Vincent Pit <perl@profvince.com>',
8     VERSION_FROM        => 'lib/Linux/SysInfo.pm',
9     ABSTRACT_FROM       => 'lib/Linux/SysInfo.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More' => 0,
13     },
14     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
15     clean               => { FILES => 'Linux-SysInfo-*' },
16 );