1# $Id $
2use 5.008;
3use ExtUtils::MakeMaker;
4# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5# the contents of the Makefile that is written.
6WriteMakefile(
7    'NAME'		=> 'Subtitles',
8    'VERSION_FROM'	=> 'Subtitles.pm', # finds $VERSION
9    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
10    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
11      (ABSTRACT_FROM => 'Subtitles.pm', # retrieve abstract from module
12       AUTHOR     => 'Dmitry Karasik <dmitry@karasik.eu.org>') : ()),
13    'EXE_FILES'         => ['subs'],
14);
15