-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
36 lines (32 loc) · 945 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
#! /usr/bin/env perl -w
use v5.10.1;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'V',
VERSION_FROM => 'lib/V.pm',
ABSTRACT_FROM => 'lib/V.pm',
AUTHOR => 'Abe Timmerman <[email protected]>',
BUILD_REQUIRES => {
'Test::Simple' => 0.88,
'Test::Fatal' => 0,
'Test::Warnings' => 0,
},
PREREQ_PM => { 'version' => 0.77 },
MIN_PERL_VERSION => '5.010001',
LICENSE => 'perl_5',
META_ADD => {
'meta-spec' => { version => 2 },
'resources' => {
homepage => 'https://github.com/abeltje/V',
repository => {
type => 'git',
url => 'https://github.com/abeltje/V.git',
},
bugtracker => {
web => 'https://github.com/abeltje/V/issues',
},
},
# 'x_IRC' => 'irc://irc.perl.org/#amsterdam.pm',
},
);