summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorGraham Knop <haarg@haarg.org>2023-03-03 00:02:03 +0100
committerYves Orton <demerphq@gmail.com>2023-03-14 04:47:38 +0800
commit6721733f1f540152ae49caec5a7da22cf83a89ba (patch)
treee9c5066710a65512801f57d5fbb2de24e24ecedb /dist
parent9aa348a042c87a9b637a02d76dbf989f73beb93f (diff)
downloadperl-6721733f1f540152ae49caec5a7da22cf83a89ba.tar.gz
dist/if: add Makefile.PL from CPAN release
Makefile.PL taken from if 0.0608
Diffstat (limited to 'dist')
-rw-r--r--dist/if/.gitignore1
-rw-r--r--dist/if/Makefile.PL23
2 files changed, 24 insertions, 0 deletions
diff --git a/dist/if/.gitignore b/dist/if/.gitignore
new file mode 100644
index 0000000000..e54624d60d
--- /dev/null
+++ b/dist/if/.gitignore
@@ -0,0 +1 @@
+!/Makefile.PL
diff --git a/dist/if/Makefile.PL b/dist/if/Makefile.PL
new file mode 100644
index 0000000000..712b6e8096
--- /dev/null
+++ b/dist/if/Makefile.PL
@@ -0,0 +1,23 @@
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+ 'NAME' => 'if',
+ 'VERSION_FROM' => 'if.pm', # finds $VERSION
+ ABSTRACT_FROM => 'if.pm',
+ ($] >= 5.007003 ? ('INSTALLDIRS' => 'perl') : ()), # core since 5.7.3
+ AUTHOR => 'Ilya Zakharevich <ilyaz@cpan.org>',
+ LICENSE => 'perl_5',
+
+ META_MERGE => {
+ 'meta-spec' => { version => 2 },
+ dynamic_config => 0,
+ resources => {
+ repository => { },
+ bugtracker => {
+ web => 'https://rt.perl.org',
+ },
+ },
+ },
+);
+