The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 04
MANIFEST 21
META.json 430
META.yml 2312
lib/File/ShareDir/Install.pm 22
5 files changed (This is a version diff) 7019
@@ -1,5 +1,9 @@
 Revision history for Perl extension File::ShareDir::Install.
 
+0.10  Dec 10 2014
+    - Recurse with $def in _scan_share_dir
+        Thank you KENTNL for rt95749
+
 0.09  Jul 7 2014
     - Get rid of DB::single 
         Thank you djerius@cpan.org
@@ -17,5 +17,4 @@ t/share/.dir/something
 t/share/.something
 t/share/honk
 t/12_delete.t
-META.yml                                 Module YAML meta-data (added by MakeMaker)
-META.json                                Module JSON meta-data (added by MakeMaker)
+META.yml                                 Module meta-data (added by MakeMaker)
@@ -1,43 +0,0 @@
-{
-   "abstract" : "Install shared files",
-   "author" : [
-      "Philip Gwyn <gwyn-at-cpan.org>"
-   ],
-   "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150",
-   "license" : [
-      "perl_5"
-   ],
-   "meta-spec" : {
-      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
-   },
-   "name" : "File-ShareDir-Install",
-   "no_index" : {
-      "directory" : [
-         "t",
-         "inc"
-      ]
-   },
-   "prereqs" : {
-      "build" : {
-         "requires" : {
-            "ExtUtils::MakeMaker" : 0
-         }
-      },
-      "configure" : {
-         "requires" : {
-            "ExtUtils::MakeMaker" : 0
-         }
-      },
-      "runtime" : {
-         "requires" : {
-            "ExtUtils::MakeMaker" : "6.11",
-            "File::Spec" : 0,
-            "IO::Dir" : 0
-         }
-      }
-   },
-   "release_status" : "stable",
-   "version" : "0.09"
-}
@@ -1,24 +1,13 @@
----
-abstract: 'Install shared files'
-author:
-  - 'Philip Gwyn <gwyn-at-cpan.org>'
-build_requires:
-  ExtUtils::MakeMaker: 0
-configure_requires:
-  ExtUtils::MakeMaker: 0
-dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
-license: perl
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: File-ShareDir-Install
-no_index:
-  directory:
-    - t
-    - inc
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         File-ShareDir-Install
+version:      0.10
+version_from: lib/File/ShareDir/Install.pm
+installdirs:  site
 requires:
-  ExtUtils::MakeMaker: 6.11
-  File::Spec: 0
-  IO::Dir: 0
-version: 0.09
+    ExtUtils::MakeMaker:           6.11
+    File::Spec:                    0
+    IO::Dir:                       0
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30
@@ -9,7 +9,7 @@ use Carp;
 use File::Spec;
 use IO::Dir;
 
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 
 our @DIRS;
 our %ALREADY;
@@ -215,7 +215,7 @@ sub _scan_share_dir
             else {
                 next if $entry =~ /^\./;
             }
-            _scan_share_dir( $files, File::Spec->catdir( $idir, $entry ), $full );
+            _scan_share_dir( $files, File::Spec->catdir( $idir, $entry ), $full, $def );
         }
     }
 }