File: Makefile.PL

package info (click to toggle)
libpadre-plugin-vi-perl 0.22-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 248 kB
  • ctags: 170
  • sloc: perl: 1,797; makefile: 11
file content (19 lines) | stat: -rw-r--r-- 659 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use inc::Module::Install;

name           'Padre-Plugin-Vi';
license        'perl';
author         'Gabor Szabo <szabgab@gmail.com>';
all_from       'lib/Padre/Plugin/Vi.pm';
requires       'Padre'                   => '0.25';
requires       'Wx::Perl::Dialog'        => '0.04';
test_requires  'Test::More'              => '0.47';
no_index       'directory'               => qw{ t xt eg share inc};
homepage       'http://padre.perlide.org/';
bugtracker     'http://padre.perlide.org/';
repository     'http://svn.perlide.org/padre/trunk/Padre-Plugin-Vi';

is_padre_plugin; # authors: Install Module::Install::PadrePlugin

WriteAll;