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

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

	      

Return to:

Send suggestions and report system problems to the System administrator.