aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: ec081a9c715f9702b5f3a796d918e98666ba7d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
	NAME          => 'List::Gather::Simple',
	VERSION_FROM  => 'lib/List/Gather/Simple.pm',
	PREREQ_PM     => {},
	ABSTRACT_FROM => 'lib/List/Gather/Simple.pm',
	AUTHOR        => 'John Ankarström <john@ankarstrom.se>',
	LICENSE       => 'perl',
	dist          => {
		PREOP => 'pod2text lib/List/Gather/Simple.pm > $(DISTVNAME)/README',
	},
);