perl-IO-Socket-IP/Makefile.PL
Troy Dawson ad0a031ca0 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/perl-IO-Socket-IP#3b134b034c6e7d839a318cc77aaf40e531a66b5e
2020-10-14 13:06:33 -07:00

27 lines
589 B
Perl

use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'IO::Socket::IP',
'VERSION_FROM' => 'lib/IO/Socket/IP.pm',
'ABSTRACT_FROM' => 'lib/IO/Socket/IP.pm',
'PREREQ_PM' => {
'base' => '0',
'Carp' => '0',
'constant' => '0',
'Errno' => '0',
'IO::Socket' => 0,
'POSIX' => '0',
'Socket' => '1.97',
'strict' => '0',
'warnings' => '0',
},
'TEST_REQUIRES' => {
'IO::Socket::INET' => '0',
'Test::More' => '0.88',
},
'INSTALLDIRS' => 'site',
);