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 (16 years, 4 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

# Content
1 use ExtUtils::MakeMaker;
2
3 require 5.008;
4
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 EXE_FILES => [qw(bin/fmd)],
14 PREREQ_PM => {
15 Crypt::Twofish => 0,
16 Crypt::Rijndael => 0,
17 Digest::SHA1 => 0,
18 AnyEvent => 2.6,
19 Algorithm::FEC => 1,
20 EV => 2,
21 Coro => 4.34,
22 },
23 PM => {
24 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
25 '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 'FCP/Key/SSK.pm' => '$(INST_LIBDIR)/FCP/Key/SSK.pm',
29 },
30 );
31