File: Makefile.PL

package info (click to toggle)
libmocked-perl 0.09-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 1,736; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl -w
use warnings;
use strict;
use lib '.';
use inc::Module::Install;

name            'mocked';
author          'Luke Closs <cpan@5thplane.com>';
build_requires  'Test::More'        => '0.42';
build_requires  'Test::Exception';
license         'perl';
version_from    'lib/mocked.pm';

# Auto-install all dependencies from CPAN
auto_install;

# Generate the Makefile
WriteAll;