Created
April 1, 2015 14:42
-
-
Save dagolden/f808f11db7487e240795 to your computer and use it in GitHub Desktop.
Makefile.PL before adding 'provides' metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use 5.006; | |
use strict; | |
use warnings; | |
use ExtUtils::MakeMaker; | |
WriteMakefile( | |
NAME => 'Acme::Provides', | |
AUTHOR => q{David Golden <dagolden@cpan.org>}, | |
VERSION => '0.01', | |
ABSTRACT => 'Demonstration of adding provides metadata', | |
LICENSE => 'artistic', | |
PL_FILES => { 'Provides.pm.PL' => '$(INST_LIB)/Acme/Provides.pm' }, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment