From: Eric Wong Date: Thu, 10 Apr 2014 06:09:37 +0000 (+0000) Subject: INSTALL: fix misnamed Debian package X-Git-Tag: v0.0.0~16 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d6d421cbdaaefa2c20f29bd19e9984f985c3cbc9;p=ssoma-mda.git INSTALL: fix misnamed Debian package While we're at it, sort Makefile.PL so it's harder to miss things. --- diff --git a/INSTALL b/INSTALL index da1fe13..d21a5c7 100644 --- a/INSTALL +++ b/INSTALL @@ -20,7 +20,7 @@ convenience. - Email::LocalDelivery libemail-localdelivery-perl - Email::Simple libemail-simple-perl - File::FcntlLock libfile-fcntllock-perl - - File::Path::Expand libfile-expand-perl + - File::Path::Expand libfile-path-expand-perl - Net::IMAP::Simple libnet-imap-simple-perl Copyright diff --git a/Makefile.PL b/Makefile.PL index 8f10bce..7873a54 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,11 +13,13 @@ WriteMakefile( ABSTRACT => 'some sort of mail archiver', EXE_FILES => [qw/ssoma-mda ssoma ssoma-rm/], PREREQ_PM => { + # Keep this sorted and synced to the INSTALL document + 'Digest::SHA' => 0, 'Email::LocalDelivery' => 0, 'Email::Simple' => 0, 'File::FcntlLock' => 0, + 'File::Path::Expand' => 0, 'Net::IMAP::Simple' => 0, - 'Digest::SHA' => 0, }, );