File: Makefile.PL

package info (click to toggle)
libarchive-any-lite-perl 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: perl: 136; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 465 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker::CPANfile;

my %params = (
    NAME          => 'Archive::Any::Lite',
    AUTHOR        => 'Kenichi Ishigaki <ishigaki@cpan.org>',
    VERSION_FROM  => 'lib/Archive/Any/Lite.pm',
    ABSTRACT_FROM => 'lib/Archive/Any/Lite.pm',
    LICENSE       => 'perl',
    META_MERGE => {
       resources => {
           repository => 'https://github.com/charsbar/archive-any-lite',
       },
    }
);

WriteMakefile(%params);