-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
36 lines (32 loc) · 1.18 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
# Makefile.PL for afs-admin-tools.
#
# Written by Russ Allbery <[email protected]>
# Updated by Bill MacAllister <[email protected]>
# Copyright 2011, 2013
# The Board of Trustees of the Leland Stanford Junior University
# Copyright 2021
# Bill MacAllister <[email protected]>
# See LICENSE for licensing terms.
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'afs-admin-tools',
ABSTRACT => 'Utilities for AFS management',
AUTHOR => 'Russ Allbery <[email protected]>',
EXE_FILES => [ qw(afs-mkmove-ro afs-mkmove-rw frak fsr
lsmounts mvto partinfo volcreate
volcreate-logs volnuke ) ],
VERSION_FROM => 'VERSION',
MIN_PERL_VERSION => 5.006,
dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
BUILD_REQUIRES => {
'Test::MinimumVersion' => '0.1',
'Test::Pod' => '1.51',
'Test::Strict' => '0.39'
},
# ExtUtils::MakeMaker only understands this with Perl 5.10 or later.
## no critic (ValuesAndExpressions::ProhibitMagicNumbers)
($] >= 5.010 ? (LICENSE => 'perl') : ()),
);