File: Makefile.PL

package info (click to toggle)
libwwwbrowser-perl 2.23-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: perl: 580; makefile: 7
file content (15 lines) | stat: -r--r--r-- 376 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my $prereq = {};
if ($^O eq 'MSWin32') {
    $prereq->{'Win32Util'} = undef;
}

WriteMakefile(
    'NAME'		=> 'WWWBrowser',
    'VERSION_FROM'	=> 'WWWBrowser.pm',
    'PREREQ_PM'		=> $prereq,
    'EXE_FILES'         => ['anybrowser'],
);