Fix: Print "Getting video title" with -t only
[grake.git] / Makefile.PL
blob5f8b4ab72354af2a2fbbc44b2cd1c82bb0bc6633
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
6 use ExtUtils::MakeMaker;
8 WriteMakefile(
9 'NAME' => 'grake',
10 ( $[ >= 5.8 )
11 ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
12 'ABSTRACT' => 'Scan webpages for Youtube video links',
14 : (),
15 'VERSION_FROM' => 'bin/grake',
16 'EXE_FILES' => ['bin/grake'],
17 'PREREQ_PM' => {
18 # Earlier versions may work -- confirmed to work with:
19 'Getopt::ArgvFile' => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
20 'LWP::UserAgent' => 5.835, # <http://search.cpan.org/perldoc?LWP::UserAgent>
21 'version' => 0.77, # <http://search.cpan.org/perldoc?version>
22 'Test::Pod' => 1.44, # <http://search.cpan.org/perldoc?Test::Pod>
24 'LICENSE' => 'gpl',
25 dist => {
26 PREOP =>
27 '@if test -f .git/HEAD; then \
28 git log --stat --after="Thu Nov 30 12:14:37 2010" >ChangeLog; \
29 fi',
30 POSTOP =>
31 '@if test -f .git/HEAD; then \
32 git checkout ChangeLog; \
33 fi',