diff options
author | John Ankarström <john@ankarstrom.se> | 2021-05-05 20:02:23 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-05-05 20:02:23 +0200 |
commit | bdc020126a6b59f3a7b866ba72f6ca22a52f8e6c (patch) | |
tree | ce17b96a7dc3c4b737339d79c2d3dfc786231ffa /Makefile.PL | |
download | List-Gather-Simple-master.tar.gz |
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..ec081a9 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,13 @@ +use 5.006; +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 'List::Gather::Simple', + VERSION_FROM => 'lib/List/Gather/Simple.pm', + PREREQ_PM => {}, + ABSTRACT_FROM => 'lib/List/Gather/Simple.pm', + AUTHOR => 'John Ankarström <john@ankarstrom.se>', + LICENSE => 'perl', + dist => { + PREOP => 'pod2text lib/List/Gather/Simple.pm > $(DISTVNAME)/README', + }, +); |