1require 5.006; # uses 'our'
2use strict;
3use ExtUtils::MakeMaker;
4WriteMakefile(
5    'NAME'          => 'Filter::Simple',
6    'VERSION_FROM'  => 'lib/Filter/Simple.pm',
7    'INSTALLDIRS'   => 'perl',
8    'LICENSE'       => 'perl_5',
9    'INSTALLDIRS'   => ( $] < 5.011 ? 'perl' : 'site' ),
10    'ABSTRACT_FROM' => 'lib/Filter/Simple.pm',
11    'AUTHOR'        => 'Damian Conway',
12    'PREREQ_PM'     => {
13        'Text::Balanced'     => '1.97',
14        'Filter::Util::Call' => 0,
15    },
16);
17