aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: a4bf39e370893759bea79bebc38ad79feef62315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME          => 'Hal::Cdroms',
	VERSION_FROM  => 'lib/Hal/Cdroms.pm',
	ABSTRACT_FROM => 'lib/Hal/Cdroms.pm',
	AUTHOR        => 'Pixel <pixel@rigaux.org>',
	LICENSE       => 'gpl_2', # or Artistic
	MIN_PERL_VERSION => '5.008000',
	'CONFIGURE_REQUIRES' => {
	    'ExtUtils::MakeMaker' => '6.64'
	},
);