-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (27 loc) · 746 Bytes
/
Copy pathMakefile.PL
File metadata and controls
34 lines (27 loc) · 746 Bytes
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
33
34
use strict;
use warnings;
use inc::Module::Install;
name 'Csistck';
perl_version '5.010';
version_from 'lib/Csistck.pm';
license_from 'lib/Csistck.pm';
author 'Anthony Johnson <aj@ohess.org>';
homepage 'http://ohess.org/projects/csistck';
bugtracker 'http://github.com/agjohnson/csistck/issues';
repository 'http://github.com/agjohnson/csistck.git';
requires 'Digest::MD5';
requires 'File::Basename';
requires 'File::Copy';
requires 'File::stat';
requires 'Getopt::Long';
requires 'Sys::Hostname::Long';
requires 'Scalar::Util';
requires 'Template';
requires 'Term::ReadKey';
requires 'Text::Diff';
requires 'Test::Exception';
# This module fails on !Linux
if ("$^O" eq "linux") {
requires 'Linux::Distribution' => '0.21';
}
WriteAll;