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

# 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.10 AnyEvent => 0.2,
19 root 1.6 },
20 root 1.5 PM => {
21 root 1.2 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
22 root 1.8 '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 root 1.9 'FCP/Key/SSK.pm' => '$(INST_LIBDIR)/FCP/Key/SSK.pm',
26 root 1.2 },
27 root 1.1 );
28