File: Makefile.PL

package info (click to toggle)
liblwp-useragent-determined-perl 1.06-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 88 kB
  • sloc: perl: 51; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 760 bytes parent folder | download | duplicates (6)
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
31
32

# Run this program to generate a makefile.  See "perldoc perlmodinstall"
#
# Time-stamp: "2004-04-08 22:47:11 ADT"
#
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

require 5.004;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'	    => 'LWP::UserAgent::Determined',
    'VERSION_FROM'  => 'lib/LWP/UserAgent/Determined.pm',
    'ABSTRACT_FROM' => 'lib/LWP/UserAgent/Determined.pm',
    'PREREQ_PM'     => {
        'LWP'                 => 0,
    },
    'dist'         => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
);

package MY;

sub libscan
{ # Determine things that should *not* be installed
    my($self, $path) = @_;
    return '' if $path =~ m/~/;
    $path;
}

__END__