bump version
[clive.git] / Makefile.PL
blob6a74402a6f077cb3fc84e5333452664c9c1a91e6
1 #!/usr/bin/env perl
3 use warnings;
4 use strict;
6 use 5.008009;
7 use ExtUtils::MakeMaker;
9 WriteMakefile(
10 'NAME' => 'clive',
11 ( $[ >= 5.8 )
12 ? ( AUTHOR => 'Toni Gundogdu <legatvs at sign gmail com>',
13 'ABSTRACT' => 'command line video extraction utility'
15 : (),
16 'VERSION_FROM' => 'lib/clive/Config.pm',
17 'EXE_FILES' => ['bin/clive'],
18 'PREREQ_PM' => {
19 'Getopt::ArgvFile' => 1.11,
20 'Class::Singleton' => 1.4,
21 'HTML::TokeParser' => 2.37,
22 'URI::Escape' => 3.29,
23 'Digest::SHA' => 5.45,
24 'WWW::Curl' => 4.05,
25 'Config::Tiny' => 2.12,
26 'version' => 0.77
28 'LICENSE' => 'gpl',
29 dist => {
30 COMPRESS => "bzip2",
31 SUFFIX => ".bz2"