File: Makefile.PL

package info (click to toggle)
libauthen-simple-perl 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: perl: 1,816; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use inc::Module::Install;

name           'Authen-Simple';
all_from       'lib/Authen/Simple.pm';
readme_from    'lib/Authen/Simple.pm';
repository     'http://github.com/chansen/p5-authen-simple';

requires       'Class::Accessor::Fast'    => 0;
requires       'Class::Data::Inheritable' => 0; 
requires       'Crypt::PasswdMD5'         => 0; # Authen::Simple::Password
requires       'Digest::MD5'              => 0; # Authen::Simple::Password
requires       'Digest::SHA'              => 0; # Authen::Simple::Password
requires       'MIME::Base64'             => 0; # Authen::Simple::Password
requires       'Params::Validate'         => 0;
requires       'Test::More'               => 0;

tests 't/*.t t/*/*.t';

WriteAll;