]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blob - Makefile.PL
cf1da637c0d444da9c86297b591f362ab2c435f4
[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         'Exporter'   => 0,
14         'Test::More' => 0,
15         'XSLoader'   => 0,
16     },
17     dist                => {
18         PREOP => 'pod2text lib/Linux/SysInfo.pm > $(DISTVNAME)/README',
19         COMPRESS => 'gzip -9f', SUFFIX => 'gz',
20     },
21     clean               => { FILES => 'Linux-SysInfo-*' },
22 );