Add Fedora::Rebuild::Package::ListLog
[Fedora-Rebuild.git] / Makefile.PL
blob5c4b1a62be9886b494cc42d1afee283847168ce2
1 use ExtUtils::MakeMaker;
3 my $mainfile = 'lib/Fedora/Rebuild.pm';
5 my $runtime_dependenices = {
6     'constant' => 0,
7     'Carp' => 0,
8     'Config::Tiny' => 0,
9     'Data::Dumper' => 0,
10     'DateTime' => 0,
11     'Fcntl' => 0,
12     'File::Copy' => 0,
13     'File::Path::Tiny' => 0,
14     'File::Spec' => 0,
15     'File::Temp' => 0,
16     'Getopt::Long' => 0,
17     'HTTP::Daemon' => 0,
18     'HTTP::Status' => 0,
19     'IO::Handle' => 0,
20     'Moose' => 0,
21     'MooseX::Types' => 0,
22     'MooseX::Types::Moose' => 0,
23     'Moose::Util::TypeConstraints' => 0,
24     'namespace::clean' => 0,
25     'POSIX' => 0,
26     'Proc::SyncExec' => 0,
27     'RPM2' => 0,
28     'RPM::VersionCompare' => 0,
29     'Scalar::Util' => 0,
30     'Storable' => 0,
31     'Term::ProgressBar' => 0,
32     'threads' => 0,
33     'Thread::Semaphore' => 0,
34     'threads::shared' => 0,
35     'URI' => 0,
36     'version' => 0.77,
39 WriteMakefile(
40     'NAME' => 'Fedora::Rebuild',
41     'VERSION_FROM' => $mainfile,
42     'ABSTRACT_FROM' => $mainfile,
43     'AUTHOR' => 'Petr Písař <ppisar@redhat.com>',
44     'LICENSE' => 'gpl_3',
45     'EXE_FILES' => [ ( glob 'bin/*' ) ],
46     'BUILD_REQUIRES' => {
47         %$runtime_dependenices,
48         'Data::Compare' => 0,
49         'Test::More' => 0,
50         'Test::Simple' => 0,
51     },
52     'PREREQ_PM' => $runtime_dependenices,
53     'META_MERGE' => {
54         'resources' => {
55             'homepage' => 'http://ppisar.fedorapeople.org/Fedora-Rebuild/',
56             'repository' => {
57                 'type' => 'git',
58                 'url' => 'git://repo.or.cz/Fedora-Rebuild.git',
59                 'web' => 'http://repo.or.cz/w/Fedora-Rebuild.git',
60             },            
61         },
62     },