public
Description: A Pure Perl interface to Git repositories
Homepage: http://search.cpan.org/dist/Git-PurePerl/
Clone URL: git://github.com/acme/git-pureperl.git
git-pureperl / Makefile.PL
100644 26 lines (24 sloc) 0.827 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME => 'Git::PurePerl',
    VERSION_FROM => 'lib/Git/PurePerl.pm',
    AUTHOR => 'Leon Brocard <acme@astray.com>',
    ABSTRACT => 'A Pure Perl interface to Git repositories',
    LICENSE => 'perl',
    PREREQ_PM => {
        'Archive::Extract' => '0',
        'Compress::Raw::Zlib' => '0',
        'Compress::Zlib' => '0',
        'Data::Stream::Bulk' => '0',
        'DateTime' => '0',
        'Digest::SHA1' => '0',
        'File::Find::Rule' => '0',
        'IO::Digest', => '0',
        'Moose' => '0',
        'MooseX::StrictConstructor' => '0',
        'MooseX::Types::Path::Class' => '0',
    }
);