ctx-simple: integrated multiline proto handling from M::S
[p5sagit/Devel-Declare.git] / Makefile.PL
1 use inc::Module::Install 0.67;
2
3 use 5.008001;
4
5 name 'Devel-Declare';
6 all_from 'lib/Devel/Declare.pm';
7
8 requires 'Scalar::Util';
9 build_requires 'Test::More';
10 build_requires 'Scope::Guard';
11
12 postamble(<<'EOM');
13 $(OBJECT) : stolen_chunk_of_toke.c
14 EOM
15
16 WriteMakefile(
17   dist => {
18     PREOP => 'pod2text lib/Devel/Declare.pm >$(DISTVNAME)/README'
19   }
20 );