-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (25 loc) · 832 Bytes
/
Copy pathMakefile.PL
File metadata and controls
32 lines (25 loc) · 832 Bytes
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
28
29
30
31
use inc::Module::Install;
abstract 'Statik is a lightweight text-based static blogging engine, inspired by blosxom';
name 'Statik';
all_from 'lib/Statik.pm';
author 'Gavin Carr <gavin@openfusion.com.au>';
perl_version '5.006';
license 'perl';
build_requires 'Test::More' => 0.88;
build_requires 'Test::Differences';
build_requires 'Test::Files';
requires 'Config::Tiny';
requires 'DateTime';
requires 'DateTime::Format::Strptime';
requires 'DateTime::Format::RFC3339';
requires 'Encode';
requires 'Exporter::Lite';
requires 'Hash::Merge';
requires 'JSON';
requires 'parent';
requires 'Text::MicroMason';
requires 'URI';
install_script 'bin/statik';
install_share 'themes';
auto_install;
WriteAll;