Initial commit
[app-scheme79asm.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::Scheme79asm',
6 VERSION_FROM => 'lib/App/Scheme79asm.pm',
7 ABSTRACT_FROM => 'lib/App/Scheme79asm.pm',
8 MIN_PERL_VERSION => '5.14.0',
9 LICENSE => 'perl',
10 SIGN => 1,
11 PREREQ_PM => {
12 qw/Data::SExpression 0.41/,
13 },
14 META_ADD => {
15 dynamic_config => 0,
16 resources => {
17 repository => 'https://git.ieval.ro/?p=app-scheme79asm.git',
18 },
19 }
20 );
This page took 0.022272 seconds and 4 git commands to generate.