summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: e738c9af6ad2962195e5c0463a7d27ef417c0b0d (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
use strict;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(NAME => 'slackbuilder',
	      DISTNAME     => 'slackbuilder',
	      VERSION_FROM => 'lib/SlackBuilder.pm',
	      AUTHOR       => 'Sergey Poznyakoff <gray@gnu.org>',
	      LICENSE      => 'gpl_3',
	      ABSTRACT     => 'Slackware Package Builder',
	      EXE_FILES    => [ 'slackbuilder' ],
	      PREREQ_PM    => {
		  'Archive::Tar' => 2.28,
                  'Config::Parser::Ini' => 0,
		  'File::Basename' => 0,
		  'File::Copy' => 0,
		  'File::Path' => 0,
		  'File::Spec' => 0,
		  'File::Temp' => 0,
		  'File::stat' => 0,
		  'HTML::Parser' => '3.72',
		  'HTTP::Request' => 0,
		  'HTTP::Response' => 0,
		  'HTTP::Status' => 0,
		  'JSON' => 0.,
		  'LWP::UserAgent' => '6.29',
		  'List::Regexp' => '1.03',
		  #Net::SBo
		  'POSIX' => 0,
		  'POSIX::Run::Capture' => 0,
		  'Safe' => 0,
		  'Scalar::Util' => 0,
		  'Text::ParseWords' => 0,
		  'URI' => 0
      	      },
	      MIN_PERL_VERSION => 5.016001
);
	      

Return to:

Send suggestions and report system problems to the System administrator.