Move manual to man1/umph.1.pod
[umph.git] / Makefile.PL
blob507e7fcbadb89e154429b6ce45655bac8853face
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
6 use 5.008009;
7 use ExtUtils::MakeMaker;
9 WriteMakefile(
10 'NAME' => 'umph',
11 VERSION_FROM => 'bin/umph',
12 ( $[ >= 5.8 )
13 ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
14 'ABSTRACT' => 'Command line tool for parsing video links from Youtube feeds'
16 : (),
17 'VERSION_FROM' => 'bin/umph',
18 'EXE_FILES' => ['bin/umph'],
19 'PREREQ_PM' => {
20 # Earlier versions may work. The module has been confirmed to work with:
21 'Getopt::ArgvFile' => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
22 'XML::DOM' => 1.44, # <http://search.cpan.org/perldoc?XML::DOM>
23 'version' => 0.77, # <http://search.cpan.org/perldoc?version>
25 'LICENSE' => 'gpl',
26 'MAN1PODS' =>
27 { 'man1/umph.1.pod' => '$(INST_MAN1DIR)/umph.$(MAN1EXT)' },
28 dist => {
29 PREOP =>
30 '@if test -f .git/HEAD; then \
31 git log --stat --after="Thu Feb 24 22:09:34 2011" >ChangeLog; \
32 fi',
33 POSTOP =>
34 '@if test -f .git/HEAD; then \
35 git checkout ChangeLog; \
36 fi',