-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.PL
More file actions
41 lines (33 loc) · 1.37 KB
/
Makefile.PL
File metadata and controls
41 lines (33 loc) · 1.37 KB
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
38
39
40
41
use inc::Module::Install;
name 'App-Tel';
all_from 'lib/App/Tel.pm';
auto_provides;
requires 'Expect' => '0.0';
requires 'IO::Stty' => '0.0';
requires 'Time::HiRes'; # core
requires 'Getopt::Std'; # core
requires 'Getopt::Long'; # core
requires 'File::Temp'; # core
requires 'Cwd'; # core
requires 'Scalar::Util'; # core
requires 'enum' => '0.0';
recommends 'Term::ANSIColor'; # core
recommends 'Term::ReadKey';
recommends 'Crypt::PWSafe3';
recommends 'File::KeePass';
recommends 'GnuPG::Interface'; # needed for App::Tel::Passwd::Pass
recommends 'IO::Handle'; # core
recommends 'IO::File'; # core
recommends 'Passwd::Keyring::Auto';
recommends 'NetAddr::IP';
recommends 'XML::Parser'; # required for File::KeePass, it's not listed as a dependency there
recommends 'Compress::Raw::Zlib'; # required for File::KeePass, it's not listed as a dependency there
install_script 'bin/tel';
install_script 'bin/mktelrc';
test_requires q(Test::Most) => 0.25;
bugtracker q(https://github.com/rfdrake/tel/issues);
homepage q(http://search.cpan.org/dist/App-Tel);
repository q(git://github.com/rfdrake/tel.git);
license 'perl';
auto_install;
WriteAll;