-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
30 lines (27 loc) · 945 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This -*- perl -*- script writes the Makefile for wApua
require 5.004;
use strict;
use ExtUtils::MakeMaker;
sub MY::postamble {
'
emacs:
emacs Makefile.PL MANIFEST README CHANGES INSTALL wApua.rc wApua/*.pm bin/wApua bin/*.pl &
';
}
WriteMakefile(
NAME => 'wApua',
VERSION_FROM => 'bin/wApua',
EXE_FILES => [ "bin/wApua", "bin/wbmp2xbm" ],
PREREQ_PM => { 'URI' => "1.03",
'URI::Escape' => 0,
'URI::file' => 0,
'URI::Heuristic' => 0,
'LWP' => "5.47",
'LWP::UserAgent' => 0,
'HTML::Parser' => "2.99_06",
'HTML::TokeParser' => 0,
'Tk' => "800.000",
'Tk::ROText' => 0 },
dist => { COMPRESS => 'gzip -9f',
SUFFIX => '.gz' }
);