use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; %::d = ( NAME => 'Net::OBS::Client', AUTHOR => q{Frank Schreiner }, VERSION_FROM => 'lib/Net/OBS/Client.pm', ABSTRACT_FROM => 'lib/Net/OBS/Client.pm', LICENSE => 'artistic_2', PL_FILES => {}, MIN_PERL_VERSION => 5.006, CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, }, BUILD_REQUIRES => { 'Test::More' => 0, 'XML::Parser' => 0, 'Test::HTTP::MockServer' => 0, }, PREREQ_PM => { 'Moose' => 0, 'Moose::Role' => 0, 'LWP::UserAgent' => 0, 'XML::Structured' => 0, 'Config::INI::Reader' => 0, 'Config::Tiny' => 0, 'HTTP::Request' => 0, 'HTTP::Cookies' => 0, 'URI::URL' => 0, 'Path::Class' => 0, 'Const::Fast' => 0, 'Carp' => 0, }, META_MERGE => { 'meta-spec' => { version => 2 }, resources => { repository => { type => 'git', url => 'https://github.com/M0ses/Net-OBS-Client.git', web => 'https://github.com/M0ses/Net-OBS-Client', }, bugtracker => {web => 'https://github.com/M0ses/Net-OBS-Client/issues'}, }, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Net-OBS-Client-*' }, ); WriteMakefile(%::d) if $0 =~ m#^(?:.*/)?Makefile.PL$#; 1;