You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2009/12/01 20:37:16 UTC

svn commit: r885891 - /lucene/lucy/trunk/perl/Build.PL

Author: marvin
Date: Tue Dec  1 19:37:15 2009
New Revision: 885891

URL: http://svn.apache.org/viewvc?rev=885891&view=rev
Log:
Remove a couple unneeded keys from Build.PL.  Add some more wildcards to
auto-cleanup.

Modified:
    lucene/lucy/trunk/perl/Build.PL

Modified: lucene/lucy/trunk/perl/Build.PL
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/perl/Build.PL?rev=885891&r1=885890&r2=885891&view=diff
==============================================================================
--- lucene/lucy/trunk/perl/Build.PL (original)
+++ lucene/lucy/trunk/perl/Build.PL Tue Dec  1 19:37:15 2009
@@ -6,19 +6,25 @@
 use Lucy::Build;
 
 my $builder = Lucy::Build->new(
-    module_name        => 'Lucy',
-    license            => 'apache',
-    dist_author        => 'Marvin Humphrey <marvin at rectangular dot com>',
-    dist_version_from  => 'lib/Lucy.pm',
-    dist_abstract_from => 'lib/Lucy.pm',
-    create_makefile_pl => 'passthrough',
-    requires           => { 'JSON::XS' => 1.53, },
-    build_requires     => {
+    module_name       => 'Lucy',
+    license           => 'apache',
+    dist_author       => 'Marvin Humphrey <marvin at rectangular dot com>',
+    dist_version_from => 'lib/Lucy.pm',
+    requires          => { 'JSON::XS' => 1.53, },
+    build_requires    => {
         'ExtUtils::CBuilder' => 0.18,
         'ExtUtils::ParseXS'  => 2.16,
         'Devel::PPPort'      => 3.13,
     },
-    add_to_cleanup => [ 'Lucy-*', 'MANIFEST.bak', 'perltidy.ERR' ],
+    add_to_cleanup     => [
+        qw(
+            Lucy-*
+            MANIFEST.bak
+            perltidy.ERR
+            *.pdb
+            *.manifest
+        ),
+    ],
 );
 
 $builder->create_build_script();