]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blob - Makefile.PL
Importing Linux-SysInfo-0.04.tar.gz
[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     LICENSE             => 'perl',
9     VERSION_FROM        => 'lib/Linux/SysInfo.pm',
10     ABSTRACT_FROM       => 'lib/Linux/SysInfo.pm',
11     PL_FILES            => {},
12     PREREQ_PM => {
13         'Test::More' => 0,
14     },
15     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16     clean               => { FILES => 'Linux-SysInfo-*' },
17 );