ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/Makefile.PL
Revision: 1.10
Committed: Thu Dec 1 22:07:40 2005 UTC (20 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0
Changes since 1.9: +1 -5 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 => 0.2,
19 },
20 PM => {
21 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
22 'FCP/Util.pm' => '$(INST_LIBDIR)/FCP/Util.pm',
23 'FCP/Metadata.pm' => '$(INST_LIBDIR)/FCP/Metadata.pm',
24 'FCP/Key/CHK.pm' => '$(INST_LIBDIR)/FCP/Key/CHK.pm',
25 'FCP/Key/SSK.pm' => '$(INST_LIBDIR)/FCP/Key/SSK.pm',
26 },
27 );
28