App-scrape

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

# -*- mode: perl; c-basic-offset: 4; indent-tabs-mode: nil; -*-

use 5.006; #weaken
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my %module = (
    MIN_PERL_VERSION => '5.006',
    META_MERGE => {
        "meta-spec" => { version => 2 },
        resources => {
            repository => {
                web => 'https://github.com/Corion/App-scrape',
                url => 'git://github.com/Corion/App-scrape.git',
                type => 'git',
            }
        },
        dynamic_config   => 0, # we promise to keep META.* up-to-date
        x_static_install => 1, # we are pure Perl and don't do anything fancy
    },

    'NAME'          => 'App::scrape',
    'LICENSE'       => 'perl',
    'VERSION_FROM'  => 'lib/App/scrape.pm', # finds $VERSION
    'EXE_FILES'     => ['bin/scrape.pl', 'bin/scrape2rss.pl'],
    'PREREQ_PM'     => {
                        # the first DOM we implement
                        'HTML::TreeBuilder::XPath' => 0.10, # v0.10 for ->findvalues()
                        'HTML::Selector::XPath'    => 0,
                        'URI'                      => 0,
                        'XML::Atom::SimpleFeed'    => 0, # for scrape2rss
                        'LWP::Simple'              => 0, # for page fetching
                        'Time::Piece'              => 0, # for date parsing
                        'Exporter'                 => 0,
                        'Getopt::Long'             => 0,
                        'Pod::Usage'               => 0,
                        'List::MoreUtils'          => 0, # for JSON output
                        'JSON'                     => 0, # for JSON output
                        'Text::CSV_XS'             => 0, # for CSV output
                      },
    ABSTRACT_FROM   => 'lib/App/scrape.pm', # retrieve abstract from module
    AUTHOR          => 'Max Maischein <corion@cpan.org>',
);

# This is so that we can do
#     require 'Makefile.PL'
# and then call get_module_info

sub get_module_info { %module }

if( ! caller ) {
    # I should maybe use something like Shipwright...
    #regen_README($main_file);
    regen_README('bin/scrape.pl');
    #regen_EXAMPLES();
    WriteMakefile1(get_module_info);
};
1;

sub WriteMakefile1 {  #Written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade.
    my %params=@_;
    my $eumm_version=$ExtUtils::MakeMaker::VERSION;



( run in 0.449 second using v1.01-cache-2.11-cpan-39bf76dae61 )