File: Makefile.PL

package info (click to toggle)
libdatetime-format-w3cdtf-perl 0.08-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 212 kB
  • sloc: perl: 1,500; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 627 bytes parent folder | download
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
use strict;
use warnings;

use lib '.';
use inc::Module::Install;

name				'DateTime-Format-W3CDTF';
all_from			'lib/DateTime/Format/W3CDTF.pm';
author				'Gregory Todd Williams <gwilliams@cpan.org>';
license				'perl';

test_requires		'Test::More'				=> 0.61;

perl_version		'5.008';

requires			'DateTime'					=> 0;

resources(
	'homepage'   => "https://metacpan.org/release/DateTime-Format-W3CDTF/",
	'repository' => "https://github.com/kasei/datetime-format-w3cdtf",
	'bugtracker' => "https://github.com/kasei/datetime-format-w3cdtf/issues",
);

write_doap_changes "meta/changes.ttl", "Changes", "turtle";

sign;
WriteAll;