-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
69 lines (61 loc) · 1.71 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use strict;
use warnings;
use utf8;
use 5.012;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
install_share dist => 'share';
WriteMakefile
(
NAME => 'Mira',
AUTHOR => 'Kiavash',
VERSION_FROM => 'lib/Mira.pm',
ABSTRACT => 'multiple website content management framework',
LICENSE => 'gpl_3',
EXE_FILES => [
"bin/mira"
],
MIN_PERL_VERSION => 5.012,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
'File::ShareDir::Install' => 0,
},
PREREQ_PM => {
'App::Cmd' => 0,
'YAML' => 0,
'Template' => 0,
'Markup::Unified' => 0,
'Encode::Locale' => 0,
'File::Copy::Recursive' => 0,
'File::ShareDir' => 0,
'DateTime' => 0,
'CGI' => 0,
'LWP::MediaTypes' => 0,
'HTTP::Date' => 0,
'HTTP::Server::Simple' => 0,
'URI::Escape' => 0,
'Test::Harness' => 0,
'Text::Markmoredown' => 0,
'Text::Textile' => "2.12",
'Text::Markdown' => "1.0.31",
'Text::MultiMarkdown' => "1.0.34",
'HTML::BBCode' => "2.06",
},
TEST_REQUIRES => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/kiamazi/mira.git',
web => 'https://github.com/kiamazi/mira',
},
},
},
);
package MY;
use File::ShareDir::Install qw(postamble);
1;