aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: d1f6d775d301cf71ab9b1c9ecbd1640ff0599c77 (plain)
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
42
43
44
45
46
47
48
49
50
51
# -*- perl -*-
use strict;
use lib 'inc';
use Module::Metadata;

use ExtUtils::AutoInstall (
    -core => {
	'Getopt::Long' => 2.34,
	'File::Path'   => 2.08,
	'File::Basename' => 2.84,
	'Test::NoWarnings' => 0,
	'Crypt::RSA::Parse' => 0.043,
	'Protocol::ACME' => 1.01,
	'Protocol::ACME::Challenge::LocalFile' => 1.01,
	'Crypt::Format' => 0.06,
	'Crypt::OpenSSL::PKCS10' => 0.16,
	'Crypt::OpenSSL::RSA' => 0.28,
	'Crypt::OpenSSL::X509' => 1.808,
	'DateTime::Format::Strptime' => 1.42,
	'LWP::UserAgent' => 6.15,
	'LWP::Protocol::https' => 6.07,
	'Pod::Usage' => 1.51,
	'Pod::Man' => 2.25,
	'Text::ParseWords' => 3.27,
	'Data::Dumper' => 0,
	'Net::DNS' => 1.06,
	'Sys::Hostname' => 1.16
    }	 
);

WriteMakefile(NAME      =>      'App::Acmeman',
	      ABSTRACT_FROM  => 'acmeman',
	      VERSION_FROM =>   'acmeman',
	      AUTHOR    =>      'Sergey Poznyakoff <gray@gnu.org>',
	      LICENSE   =>      'gpl_3',
	      EXE_FILES =>      [ 'acmeman' ],
	      MIN_PERL_VERSION => 5.006,
	      META_MERGE => {
		  'meta-spec' => { version => 2 },
		  resources => {
		      repository => {
			  type => 'git',
			  url => 'git://git.gnu.org.ua/gsc/acmeman.git',
			  web => 'http://git.gnu.org.ua/cgit/gsc/acmeman.git/',
		      },
		  },
		  provides => Module::Metadata->provides(version => '1.4',
							 dir => 'lib')
	      }
	      
);

Return to:

Send suggestions and report system problems to the System administrator.