File: Makefile.PL

package info (click to toggle)
libcgi-application-plugin-devpopup-perl 1.07-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 292 kB
  • sloc: perl: 481; sh: 56; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $Id: Makefile.PL 14 2009-12-04 12:47:11Z stro $

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  'DISTNAME'      => 'CGI-Application-Plugin-DevPopup-Query',
  'NAME'          => 'CGI::Application::Plugin::DevPopup::Query',
  'ABSTRACT'      => 'Show CGI query in DevPopup window',
  'AUTHOR'        => 'Serguei Trouchelle <stro@cpan.org>',
  'VERSION_FROM'  => 'Query.pm',
  'LICENSE'       => 'perl',
  'PREREQ_PM'     => {
                         'CGI::Application::Plugin::DevPopup' => 1.03,
                     },
);