File: Makefile.PL

package info (click to toggle)
libxml-tiny-perl 2.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,132 kB
  • sloc: xml: 720; perl: 185; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'XML::Tiny',
    META_MERGE => {
        license => 'other',
        resources => {
	    repository => 'https://github.com/DrHyde/perl-modules-XML-Tiny',
	    bugtracker => 'https://github.com/DrHyde/perl-modules-XML-Tiny/issues'
        }
    },
    VERSION_FROM => 'lib/XML/Tiny.pm', # finds $VERSION
    PREREQ_PM    => {
        # no pre-reqs!
    }
);