ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/Makefile.PL
Revision: 1.6
Committed: Thu May 13 21:43:16 2004 UTC (22 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.5: +7 -1 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     Event => 0.87, # or Tk, Glib, Coro
19     },
20 root 1.5 PM => {
21 root 1.2 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
22 root 1.5 'Util.pm' => '$(INST_LIBDIR)/FCP/Util.pm',
23 root 1.2 'Event/Event.pm' => '$(INST_LIBDIR)/FCP/Event/Event.pm',
24 root 1.3 'Event/Coro.pm' => '$(INST_LIBDIR)/FCP/Event/Coro.pm',
25 root 1.4 'Event/Glib.pm' => '$(INST_LIBDIR)/FCP/Event/Glib.pm',
26     'Event/Tk.pm' => '$(INST_LIBDIR)/FCP/Event/Tk.pm',
27 root 1.5 #'Key/CHK.pm' => '$(INST_LIBDIR)/FCP/Key/CHK.pm',
28 root 1.2 },
29 root 1.1 );
30