synopsis: tweak --proxy
[umph.git] / Makefile.PL
blob80fed25431e60bb10855a26ad1b6fb3c3b822be4
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
6 use ExtUtils::MakeMaker;
8 WriteMakefile(
9 'NAME' => 'umph',
10 VERSION_FROM => 'bin/umph',
11 ( $[ >= 5.8 )
12 ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
13 'ABSTRACT' => 'Command line tool for parsing video links from Youtube feeds'
15 : (),
16 'VERSION_FROM' => 'bin/umph',
17 'EXE_FILES' => ['bin/umph'],
18 'PREREQ_PM' => {
19 # Earlier versions may work. The module has been confirmed to work with:
20 'Getopt::ArgvFile' => 1.11, # <http://search.cpan.org/perldoc?Getopt::ArgvFile>
21 'XML::DOM' => 1.44, # <http://search.cpan.org/perldoc?XML::DOM>
22 'version' => 0.77, # <http://search.cpan.org/perldoc?version>
24 'LICENSE' => 'gpl'