Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 263057f

Browse files
authored
Merge pull request #28 from polyfloyd/add-makefile-pl
Add Makefile.PL
2 parents 4ff30fd + 8b064a3 commit 263057f

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/MYMETA.json
2+
/MYMETA.yml
3+
/Makefile
4+
/blib
5+
/pm_to_blib

Makefile.PL

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
use v5.10;
2+
use ExtUtils::MakeMaker;
3+
WriteMakefile(
4+
NAME => 'RevBank',
5+
VERSION_FROM => 'revbank',
6+
ABSTRACT_FROM => 'lib/RevBank.pod',
7+
EXE_FILES => [ 'revbank' ],
8+
PREREQ_PM => { },
9+
AUTHOR => 'Juerd Waalboer <[email protected]>',
10+
META_MERGE => {
11+
'meta-spec' => { version => 2 },
12+
resources => {
13+
repository => {
14+
type => 'git',
15+
url => 'https://github.com/revspace/revbank.git',
16+
web => 'https://github.com/revspace/revbank',
17+
},
18+
bugtracker => {
19+
web => 'https://github.com/revspace/revbank/issues'
20+
},
21+
},
22+
},
23+
);

0 commit comments

Comments
 (0)