ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/Makefile.PL
Revision: 1.12
Committed: Sun Dec 23 15:42:48 2007 UTC (18 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_1, rel-1_2, HEAD
Changes since 1.11: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.6 require 5.008;
4 root 1.1
5     WriteMakefile(
6     dist => {
7     PREOP => 'pod2text FCP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8     COMPRESS => 'gzip -9v',
9     SUFFIX => '.gz',
10     },
11     NAME => "Net::FCP",
12     VERSION_FROM => "FCP.pm",
13 root 1.5 EXE_FILES => [qw(bin/fmd)],
14 root 1.6 PREREQ_PM => {
15     Crypt::Twofish => 0,
16     Crypt::Rijndael => 0,
17     Digest::SHA1 => 0,
18 root 1.11 AnyEvent => 2.6,
19 root 1.12 Algorithm::FEC => 1,
20     EV => 2,
21     Coro => 4.34,
22 root 1.6 },
23 root 1.5 PM => {
24 root 1.2 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
25 root 1.8 'FCP/Util.pm' => '$(INST_LIBDIR)/FCP/Util.pm',
26     'FCP/Metadata.pm' => '$(INST_LIBDIR)/FCP/Metadata.pm',
27     'FCP/Key/CHK.pm' => '$(INST_LIBDIR)/FCP/Key/CHK.pm',
28 root 1.9 'FCP/Key/SSK.pm' => '$(INST_LIBDIR)/FCP/Key/SSK.pm',
29 root 1.2 },
30 root 1.1 );
31