File: Makefile.PL

package info (click to toggle)
libauthen-cas-client-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 252 kB
  • sloc: perl: 2,721; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 297 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 lib qw(.);

use inc::Module::Install;

name     'Authen-CAS-Client';
license  'Nil';
all_from 'lib/Authen/CAS/Client.pm';

requires 'LWP';
requires 'URI';
requires 'XML::LibXML';

test_requires 'Test::MockObject';
test_requires 'Test::More';

auto_install;
WriteAll;