summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST1
-rw-r--r--dist/Attribute-Handlers/.gitignore1
-rw-r--r--dist/Attribute-Handlers/Makefile.PL24
3 files changed, 26 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index dae531fbd8..9b842f9f57 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3038,6 +3038,7 @@ dist/Attribute-Handlers/demo/demo_rawdata.pl Attribute::Handlers demo
dist/Attribute-Handlers/demo/Descriptions.pm Attribute::Handlers demo
dist/Attribute-Handlers/demo/MyClass.pm Attribute::Handlers demo
dist/Attribute-Handlers/lib/Attribute/Handlers.pm Attribute::Handlers
+dist/Attribute-Handlers/Makefile.PL Attribute::Handlers
dist/Attribute-Handlers/t/caller.t See if Attribute::Handlers works
dist/Attribute-Handlers/t/constants.t Test constants and Attribute::Handlers
dist/Attribute-Handlers/t/data_convert.t Test attribute data conversion
diff --git a/dist/Attribute-Handlers/.gitignore b/dist/Attribute-Handlers/.gitignore
new file mode 100644
index 0000000000..e54624d60d
--- /dev/null
+++ b/dist/Attribute-Handlers/.gitignore
@@ -0,0 +1 @@
+!/Makefile.PL
diff --git a/dist/Attribute-Handlers/Makefile.PL b/dist/Attribute-Handlers/Makefile.PL
new file mode 100644
index 0000000000..3c99637d03
--- /dev/null
+++ b/dist/Attribute-Handlers/Makefile.PL
@@ -0,0 +1,24 @@
+use 5.006;
+use strict;
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ NAME => 'Attribute::Handlers',
+ VERSION_FROM => 'lib/Attribute/Handlers.pm',
+ ABSTRACT_FROM => 'lib/Attribute/Handlers.pm',
+ INSTALLDIRS => ( $] < 5.011 ? 'perl' : 'site' ),
+ LICENSE => 'perl_5',
+ PREREQ_PM => {
+ 'parent' => 0,
+ },
+ AUTHOR => 'Damian Conway',
+ META_MERGE => {
+ resources => {
+ repository => 'https://github.com/perl/perl5.git',
+ bugtracker => 'https://github.com/perl/perl5/issues',
+ MailingList => 'https://lists.perl.org/list/perl5-porters.html',
+ },
+ no_index => {
+ directory => [ 'demo' ],
+ },
+ },
+);