File: Makefile.PL

package info (click to toggle)
wapua 0.06-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 236 kB
  • ctags: 116
  • sloc: perl: 2,389; makefile: 46
file content (30 lines) | stat: -rw-r--r-- 971 bytes parent folder | download | duplicates (2)
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'      => undef,
                      'URI::file'        => undef,
                      'URI::Heuristic'   => undef,
                      'LWP'              => "5.47",
                      'LWP::UserAgent'   => undef,
                      'HTML::Parser'     => "2.99_06",
                      'HTML::TokeParser' => undef,
                      'Tk'               => "800.000",
                      'Tk::ROText'       => undef },
   dist          => { COMPRESS => 'gzip -9f', 
		      SUFFIX => '.gz' }
);