-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
32 lines (23 loc) · 1.04 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use inc::Module::Install 0.77;
use Module::Install::AutoManifest;
use Module::Install::ReadmeFromPod;
# See http://search.cpan.org/~falcone/Module-Install-RTx/lib/Module/Install/RTx.pm
use Module::Install::RTx;
RTx ('RT-Extension-CustomerGroups');
# May work with older versions but not tested
requires_rt('4.0.7');
name 'RT-Extension-CustomerGroups';
all_from 'lib/RT/Extension/CustomerGroups.pm';
build_requires 'Module::Install::AutoManifest' => '0.003';
build_requires 'Module::Install::ReadmeFromPod' => '0.20';
requires 'Carp' => 0;
requires 'Module::Install::RTx' => '0.30';
test_requires 'Test::More' => '0.47';
readme_from 'lib/RT/Extension/CustomerGroups.pm';
license 'perl';
auto_manifest;
homepage 'https://github.com/2ndQuadrant/rt-extension-customergroups-perl';
bugtracker 'https://rt.cpan.org/Dist/Display.html?Status=Active&Queue=RT-Extension-CustomerGroups';
repository 'git://github.com/2ndQuadrant/rt-extension-customergroups-perl.git';
auto_install();
WriteAll;