ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/Makefile.PL
Revision: 1.1
Committed: Sun Nov 2 12:55:41 2003 UTC (20 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 require 5.008;
2
3 use Config;
4
5 require ExtUtils::MakeMaker;
6 import ExtUtils::MakeMaker;
7
8 sub MY::postamble {
9 my $self=shift;
10 <<EOF
11
12 .PHONY: doc
13
14 run: all
15 \$(PERL) -Mblib -MCarp=verbose bin/cv
16
17 EOF
18 }
19
20 WriteMakefile(
21 dist => {
22 PREOP => 'chmod -R u=rwX,go=rX . ;',
23 COMPRESS => 'gzip -9v',
24 SUFFIX => '.gz',
25 },
26 PREREQ_PM => {
27 Gtk2 => 1.0,
28 },
29 DIR => [],
30 NAME => 'Gtk2::CV',
31 VERSION_FROM => 'bin/cv',
32 XS_VERSION => 0.0001,
33 EXE_FILES => [qw(bin/cv)],
34 PM => {
35 'lib/Gtk2/CV/ImageWindow.pm' => '$(INST_LIBDIR)/CV/ImageWindow.pm',
36 'lib/Gtk2/CV.pm' => '$(INST_LIBDIR)/CV.pm',
37
38 'cv.png' => '$(INST_LIBDIR)/CV/cv.png',
39 },
40 );
41
42
43