Set 0.0.6 release notes
[gcap.git] / Makefile.PL
blob158ce0440ec388f4233ab2f9806eaf4fea3652a9
1 use warnings;
2 use strict;
4 use 5.008009;
5 use ExtUtils::MakeMaker;
7 WriteMakefile(
8     'NAME' => 'gcap',
9     ( $[ >= 5.8 )
10     ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
11         'ABSTRACT' => 'Youtube closed caption downloader'
12         )
13     : (),
14     'VERSION_FROM' => 'bin/gcap',
15     'EXE_FILES'    => ['bin/gcap'],
16     'PREREQ_PM'    => {
17 # Earlier versions may work. The module has been confirmed to work with:
18 'Getopt::ArgvFile'  => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
19 'XML::DOM'          => 1.44, # <http://search.cpan.org/perldoc?XML::DOM>
20 'version'           => 0.77, # <http://search.cpan.org/perldoc?version>
21 'HTML::Entities'    => 3.68, # <http://search.cpan.org/perldoc?HTML::Entities>
22     },
23     'LICENSE' => 'gpl',
24     'MAN1PODS' =>
25         { 'man1/gcap.1.pod' => '$(INST_MAN1DIR)/gcap.$(MAN1EXT)' },
26     dist => {
27         PREOP =>
28 '@if test -f .git/HEAD; then \
29         git log --stat --after="Thu Feb 17 00:51:39 2011" >ChangeLog; \
30 fi',
31         POSTOP   =>
32 '@if test -f .git/HEAD; then \
33         git checkout ChangeLog; \
34 fi',
35     },