doc: Correct RPM::is_satisfied
[Fedora-Rebuild.git] / Makefile.PL
blob23fcbc7ac5a7a6405fcbcef21d7701fb7f26fae8
1 use ExtUtils::MakeMaker;
3 my $mainfile = 'lib/Fedora/Rebuild.pm';
5 WriteMakefile(
6     'NAME' => 'Fedora::Rebuild',
7     'VERSION_FROM' => $mainfile,
8     'ABSTRACT_FROM' => $mainfile,
9     'AUTHOR' => 'Petr Písař <ppisar@redhat.com>',
10     'LICENSE' => 'gpl_3',
11     'EXE_FILES' => [ ( glob 'bin/*' ) ],
12     'BUILD_REQUIRES' => {
13         'Data::Compare' => 0,
14         'Test::Simple' => 0
15     },
16     'PREREQ_PM' => {
17         'constant' => 0,
18         'Carp' => 0,
19         'Data::Dumper' => 0,
20         'File::Copy' => 0,
21         'File::Path' => 0,
22         'File::Spec' => 0,
23         'IO::Handle' => 0,
24         'Moose' => 0,
25         'MooseX::Types::Moose' => 0,
26         'Moose::Util::TypeConstraints' => 0,
27         'namespace::clean' => 0,
28         'POSIX' => 0,
29         'Proc::SyncExec' => 0,
30         'RPM2' => 0,
31         'RPM::VersionCompare' => 0,
32         'Scalar::Util' => 0,
33         'Storable' => 0,
34         'threads' => 0,
35         'Thread::Semaphore' => 0,
36         'threads::shared' => 0,
37         'version' => 0.77,
38     }