-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
37 lines (29 loc) · 774 Bytes
/
Makefile.PL
File metadata and controls
37 lines (29 loc) · 774 Bytes
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
use strict;
use warnings;
use v5.34.0;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::Yabsm',
AUTHOR => 'Nicholas Hubbard <nicholashubbard@posteo.net>',
ABSTRACT => 'a btrfs snapshot and backup management system',
LICENSE => 'gpl_3',
VERSION_FROM => 'bin/yabsm',
MIN_PERL_VERSION => '5.34.0',
EXE_FILES => [
'bin/yabsm'
],
test => {
TESTS => 't/*.t'
},
# Thanks App::FatPacker!
PREREQ_PM => {},
TEST_REQUIRES => {
'Test::Exception' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/NicholasBHubbard/Yabsm',
bugtracker => 'https://github.com/NicholasBHubbard/Yabsm/issues',
},
},
);