1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'FFmpeg::Command',
7    AUTHOR              => 'Gosuke Miyashita <gosukenator@gmail.com>',
8    VERSION_FROM        => 'lib/FFmpeg/Command.pm',
9    ABSTRACT_FROM       => 'lib/FFmpeg/Command.pm',
10    PL_FILES            => {},
11    PREREQ_PM => {
12        'Test::More'            => 0,
13        'Class::Accessor::Fast' => 0,
14        'Class::ErrorHandler'   => 0,
15        'IPC::Run'              => 0,
16        'MIME::Types'           => 0,
17    },
18    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
19    clean               => { FILES => 'FFmpeg-Command-*' },
20);
21