Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atoomic/extutils-makemaker-ppport
ExtUtils::MakeMaker when using Devel-PPPort
https://github.com/atoomic/extutils-makemaker-ppport
Last synced: about 2 months ago
JSON representation
ExtUtils::MakeMaker when using Devel-PPPort
- Host: GitHub
- URL: https://github.com/atoomic/extutils-makemaker-ppport
- Owner: atoomic
- License: other
- Created: 2020-07-22T21:56:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-22T22:48:45.000Z (over 4 years ago)
- Last Synced: 2024-10-13T11:34:33.987Z (3 months ago)
- Language: Perl
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Actions Status](https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/workflows/testsuite/badge.svg)](https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/actions)
# SYNOPSIS
```perl
# Makefile.PL
use ExtUtils::MakeMaker::PPPort;WriteMakefile(
NAME => 'Foo::Bar',
...
MIN_PPPORT_VERSION => 3.58, # optional
);
```# DESCRIPTION
This module allows you to use an up to date version of ppport.h
when using Devel-PPPort.You do not need to ship an old version of \`ppport.h\` with your codebase.
# Migration to ExtUtils::MakeMaker::PPPort
You want to remove \`ppport.h\` from your directory and ignore it in your version control.
```
rm -f ppport.h
echo 'ppport.h' >> .gitignore
```Then you can start using \`ExtUtils::MakeMaker::PPPort\` instead of \`ExtUtils::MakeMaker\`.
# BUGS
No known bugs.
Please report any bugs to GitHub Issues at
[https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/issues](https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/issues).# SEE ALSO
[ExtUtils::MakeMaker](https://metacpan.org/pod/ExtUtils%3A%3AMakeMaker)
[Devel::PPPort](https://metacpan.org/pod/Devel%3A%3APPPort)
# SUPPORT
You can find this documentation for this module with the perldoc command.
```
perldoc ExtUtils::MakeMaker::PPPort
```You can also look for information at:
- MetaCPAN
[https://metacpan.org/release/ExtUtils-MakeMaker-PPPort](https://metacpan.org/release/ExtUtils-MakeMaker-PPPort)
- Github
[https://github.com/atoomic/ExtUtils-MakeMaker-PPPort](https://github.com/atoomic/ExtUtils-MakeMaker-PPPort)
- Issues
[https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/issues](https://github.com/atoomic/ExtUtils-MakeMaker-PPPort/issues)