Update MANIFEST.SKIP
[grake.git] / Makefile.PL
blobc1027a2eedc753657528be7c2a1941d646cc5f3e
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
6 use 5.010001;
7 use ExtUtils::MakeMaker;
9 WriteMakefile(
10 'NAME' => 'grake',
11 ( $[ >= 5.8 )
12 ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
13 'ABSTRACT' => 'YouTube video URL scanner',
15 : (),
16 'VERSION_FROM' => 'bin/grake',
17 'EXE_FILES' => ['bin/grake'],
18 'PREREQ_PM' => {
19 # Earlier versions may work -- confirmed to work with:
20 #'Umph::Prompt' => 0.1.0, # <http://umph.googlecode.com/>
21 'Getopt::ArgvFile' => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
22 'LWP::UserAgent' => 5.835, # <http://search.cpan.org/perldoc?LWP::UserAgent>
23 'version' => 0.77, # <http://search.cpan.org/perldoc?version>
25 'LICENSE' => 'gpl',
26 'MAN1PODS' =>
27 { 'doc/man1/grake.1.pod' => '$(INST_MAN1DIR)/grake.$(MAN1EXT)' },
28 dist => {
29 PREOP =>
30 '@if test -f .git/HEAD; then \
31 git log --stat --after="Thu Nov 30 12:14:37 2010" >ChangeLog; \
32 fi',
33 POSTOP =>
34 '@if test -f .git/HEAD; then \
35 git checkout ChangeLog; \
36 fi',