diff --git a/MANIFEST b/MANIFEST index 72b48fb..526d9cf 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,5 @@ Changes -MaxFlow.pm +lib/Graph/MaxFlow.pm INSTALL Makefile.PL MANIFEST diff --git a/Makefile.PL b/Makefile.PL index 9b62e24..b0af59a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,9 +8,9 @@ WriteMakefile( 'NAME' => 'Graph::MaxFlow', 'LICENSE' => 'perl', 'PREREQ_PM' => { 'Graph' => "0.5" }, - 'VERSION_FROM' => 'MaxFlow.pm', # finds $VERSION + 'VERSION_FROM' => 'lib/Graph/MaxFlow.pm', # finds $VERSION 'dist' => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'MaxFlow.pm', # retrieve abstract from module + (ABSTRACT_FROM => 'lib/Graph/MaxFlow.pm', # retrieve abstract from module AUTHOR => 'Walt Mankowski ') : ()), ); diff --git a/MaxFlow.pm b/lib/Graph/MaxFlow.pm similarity index 100% rename from MaxFlow.pm rename to lib/Graph/MaxFlow.pm