-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
36 lines (28 loc) · 1.25 KB
/
Makefile.PL
File metadata and controls
36 lines (28 loc) · 1.25 KB
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
35
36
use 5.008005;
use strict;
use inc::Module::Install 0.77;
#####################################################################
# Normal Boring Commands
# NOTE: Core modules that aren't dual-life should always have a version of 0
name 'Padre-WebSite';
license 'perl';
author 'Gabor Szabo';
all_from 'lib/Padre/WebSite.pm';
requires 'perl' => '5.008005';
requires 'CGI' => 0;
requires 'DBD::SQLite' => '1.10';
requires 'DBI' => '1.58';
requires 'Digest::MD5' => 0;
requires 'FindBin' => 0;
requires 'YAML::Tiny' => '1.32';
test_requires 'Test::More' => '0.47';
test_requires 'Test::Most' => '0.21';
test_requires 'Test::Snapshots' => '0.03';
test_requires 'Test::NoWarnings' => '0.084';
no_index 'directory' => qw{ t xt eg share inc privinc };
homepage 'http://padre.perlide.org/';
bugtracker 'http://padre.perlide.org/';
repository 'https://github.com/PadreIDE/Padre-WebSite/';
#MailingList 'http://mail.perlide.org/mailman/listinfo/padre-dev';
install_script 'script/collector.pl';
WriteAll;