From efa47692938bd68a489dc9b98ea8b9d744382f88 Mon Sep 17 00:00:00 2001 From: Ricardo Signes Date: Thu, 1 Jan 2026 21:55:11 -0500 Subject: [PATCH] move library into lib --- MANIFEST | 2 +- Makefile.PL | 4 ++-- MaxFlow.pm => lib/Graph/MaxFlow.pm | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename MaxFlow.pm => lib/Graph/MaxFlow.pm (100%) 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