-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
38 lines (34 loc) · 875 Bytes
/
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
use strict;
use warnings;
use 5.008;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Torbridge',
AUTHOR => 'Ali Moradi <[email protected]>',
VERSION_FROM => 'torbridge.pl',
LICENSE => 'gpl_3',
PREREQ_PM => {
'WWW::Mechanize' => '0',
'Moose' => '0',
'Mojolicious' => '0',
'LWP::Protocol::https' => '0',
'Term::ANSIColor' => '0'
},
TEST_REQUIRES => {
'Test::More' => '0'
},
test => {TESTS => 't/*.t'},
EXE_FILES => [
'torbridge.pl'
],
META_MERGE => {
'meta-spec' => {version => 0.02},
resources =>{
repository => {
type => 'git',
url => 'https://github.com/deadmarshal/TorBridge.git',
},
bugtracker => {web => 'https://github.com/deadmarshal/TorBridge/issues'},
}
},
);