xref: /openbsd-src/gnu/usr.bin/perl/dist/SelfLoader/Makefile.PL (revision f2a19305cfc49ea4d1a5feb55cd6c283c6f1e031)
1## This -*- perl -*- script writes the Makefile for SelfLoader
2# You should read "perldoc perlmodinstall" for instructions on
3#  how to install modules like this.
4
5require 5.008;
6use strict;
7use ExtUtils::MakeMaker;
8WriteMakefile(
9  'NAME' => 'SelfLoader',
10  'VERSION_FROM' => 'lib/SelfLoader.pm', # finds $VERSION
11  'LICENSE' => 'perl_5',
12  'PREREQ_PM' => {},
13  'ABSTRACT_FROM' => 'lib/SelfLoader.pm',
14  'AUTHOR' => 'Steffen Mueller <smueller@cpan.org>',
15  'INSTALLDIRS' => ( $] < 5.011 ? 'perl' : 'site' ),
16);
17
18__END__
19
20