File: Makefile.PL

package info (click to toggle)
libany-uri-escape-perl 0.01-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 72 kB
  • ctags: 1
  • sloc: perl: 39; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Any::URI::Escape',
    VERSION_FROM  => 'lib/Any/URI/Escape.pm',
    PREREQ_PM     => { 'URI::Escape' => 0 },
    ABSTRACT_FROM => 'lib/Any/URI/Escape.pm',
    AUTHOR        => 'Fred Moyer <fred@redhotpenguin.com>',
);