remove TODO from dist
[clive.git] / Makefile.PL
blob7ebeb75bad75d35f934af596d5e1b6286187f730
1 use warnings;
2 use strict;
4 use ExtUtils::MakeMaker;
6 WriteMakefile(
7     'NAME' => 'clive',
8     ( $[ >= 5.8 )
9     ? ( 'AUTHOR'     => 'Toni Gundogdu <legatvs at sign gmail com>',
10         'ABSTRACT' => 'Command line video extraction tool'
11         )
12     : (),
13     'VERSION_FROM' => 'bin/clive',
14     'EXE_FILES' => ['bin/clive'],
15     'PREREQ_PM' => {
16 # Earlier versions may work.
17 'Getopt::ArgvFile' => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
18 'JSON::XS'         => 2.30, # <http://search.cpan.org/perldoc?JSON::XS>
19 'version'          => 0.77, # <http://search.cpan.org/perldoc?version>
20     },
21     'LICENSE' => 'gpl',
22     'MAN1PODS' => { 'man1/clive.1.pod' => '$(INST_MAN1DIR)/clive.$(MAN1EXT)' }