forked from linode/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
28 lines (26 loc) · 690 Bytes
/
Makefile.PL
File metadata and controls
28 lines (26 loc) · 690 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
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Linode::CLI',
VERSION_FROM => 'lib/Linode/CLI/Util.pm',
ABSTRACT => 'A simple command-line interface to the Linode platform.',
AUTHOR => 'Linode, LLC',
PREREQ_PM => {
'JSON' => 0,
'LWP::UserAgent' => 0,
'Mozilla::CA' => 0,
'Try::Tiny' => 0,
'WebService::Linode' => 0,
},
PMLIBDIRS => [
'lib/Linode',
],
EXE_FILES => [
'linode',
'linode-account',
'linode-domain',
'linode-linode',
'linode-nodebalancer',
'linode-stackscript',
],
);