File: Makefile.PL

package info (click to toggle)
libcatalyst-component-instancepercontext-perl 0.001001-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 168 kB
  • sloc: perl: 1,542; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 433 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

# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# Define metadata
name 'Catalyst-Component-InstancePerContext';
abstract 'Moose role to create only one instance of component per context';
all_from 'lib/Catalyst/Component/InstancePerContext.pm';

# Specific dependencies
requires 'Catalyst';
requires 'Moose';
requires 'Scalar::Util';
build_requires 'Test::More';

auto_install;
WriteAll;