File: Makefile.PL

package info (click to toggle)
libalgorithm-diff-perl 1.201-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 208 kB
  • sloc: perl: 1,491; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME          => 'Algorithm::Diff',
  VERSION_FROM  => 'lib/Algorithm/Diff.pm', # finds $VERSION

  # Note that EXE_FILES is not provided.  The programs shipped with
  # Algorithm-Diff have traditionally not been installed to the $PATH, and are
  # unlikely to get installed there in the future.

  META_ADD      => {
    license => 'http://dev.perl.org/licenses/',
  },
);