1use ExtUtils::MakeMaker;
2require 5.006;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    'NAME'	=> 'SWF::File',
7    'VERSION_FROM' => 'lib/SWF/Element.pm', # finds $VERSION
8    'PREREQ_PM' => {
9	'Data::TemporaryBag' => 0.08,
10	'Compress::Zlib'     => 0,
11	},
12    'EXE_FILES' => ['dumpswf.plx'],
13);
14
15