Finance-Quote Makefile.PL


Finance-Quote documentation Contained in the Finance-Quote distribution.

Index



Finance-Quote documentation Contained in the Finance-Quote distribution.

#!/usr/bin/perl -w
use strict;
use inc::Module::Install;

# Ugly parens are used in this Makefile.PL for backwards compatibility
# with some old dh-make-perl systems on Debian.

name(           'Finance-Quote');
all_from(       'lib/Finance/Quote.pm');
license(        'gpl');

# We'd like to have multiple authors listed.  See future_use below.

author('Paul Fenwick <pjf@cpan.org>');

requires(       'LWP::UserAgent'            => 0);
requires(       'Crypt::SSLeay'             => 0);
requires(       'HTTP::Request::Common'     => 0);
requires(       'HTML::TableExtract'        => 0);
requires(       'HTML::TreeBuilder'         => 0);

test_requires(  'Test::More'                => 0);

# Lowercase resource names have special meanings in the META.yml spec.

resources(      repository => 'http://github.com/pfenwick/finance-quote/');
resources(      bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Finance-Quote');
resources(      homepage   => 'http://finance-quote.sourceforge.net/');

# Uppercase resource names are not special in the spec.

resource(       MailingList => 'https://lists.sourceforge.net/lists/listinfo/finance-quote-devel');

# And we're done!

WriteAll();