Annotation of todotxt/Text-Todo/Makefile.PL, Revision 1.2
1.1 andrew 1: use strict;
2: use warnings;
3: use ExtUtils::MakeMaker;
1.2 ! andrew 4: # $AFresh1: Makefile.PL,v 1.1.1.1 2009/07/09 18:21:34 andrew Exp $
1.1 andrew 5:
6: WriteMakefile(
7: NAME => 'Text::Todo',
8: AUTHOR => 'Andrew Fresh <andrew@cpan.org>',
9: VERSION_FROM => 'lib/Text/Todo.pm',
10: ABSTRACT_FROM => 'lib/Text/Todo.pm',
11: PL_FILES => {},
12: PREREQ_PM => {
13: 'Test::More' => 0,
14: 'version' => 0,
15: },
16: dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17: clean => { FILES => 'Text-Todo-*' },
18: );
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>