Acme-Ghost

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

#!/usr/bin/perl -w
use strict;
use ExtUtils::MakeMaker;
use Config;

die "Acme::Ghost is not supported on Microsoft Windows and Cygwin operating systems\n"
    if $^O eq 'MSWin32' or $^O =~ /cygwin/i;
die "Acme::Ghost does not support fork emulation\n" if $Config{d_pseudofork};

my $build_requires = {
        'ExtUtils::MakeMaker'   => 6.60,
        'Test::More'            => 0.94,
    };

my $prereq_pm = {
        'Sys::Syslog'           => 0,
    };

WriteMakefile(
    'NAME'              => 'Acme::Ghost',
    'MIN_PERL_VERSION'  => 5.020,
    'VERSION_FROM'      => 'lib/Acme/Ghost.pm',
    'ABSTRACT_FROM'     => 'lib/Acme/Ghost.pm',
    'BUILD_REQUIRES'    => $build_requires,
    'PREREQ_PM'         => $prereq_pm,
    'AUTHOR'            => 'Serz Minus (Sergey Lepenkov) <abalama@cpan.org>',
    'LICENSE'           => 'artistic_2',
    'META_MERGE'        => {
        'meta-spec' => {version => 2},
        prereqs     => {runtime => {requires => {perl => '5.020'}}},
        resources   => {
            homepage    => 'https://sourceforge.net/projects/acme-ghost/',
            license     => 'https://opensource.org/license/artistic-2-0',
            repository      => {
                    type => 'git',
                    url  => 'https://abalama@git.code.sf.net/p/acme-ghost/code',
                    web  => 'https://sourceforge.net/p/acme-ghost/code/ci/master/tree/',
                  },
        },
    },
    clean => {
        FILES => '*.pid *.tmp *.log',
    },
);

1;



( run in 1.184 second using v1.01-cache-2.11-cpan-98e64b0badf )