public
Description: Perl module to convert Gedcom files into MIT Simile Timelines
Homepage: http://savage.net.au/Perl-modules.html
Clone URL: git://github.com/ronsavage/html--timeline.git
html--timeline / Build.PL
100644 26 lines (24 sloc) 0.554 kb
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
use Module::Build;
 
Module::Build -> new
(
 module_name => 'HTML::Timeline',
 license => 'artistic',
 dist_abstract => 'Convert a Gedcom file into a Timeline file',
 dist_author => 'Ron Savage <ron@savage.net.au>',
 build_requires =>
 {
Test::More => 0,
Test::Pod => 0,
 },
 requires =>
 {
accessors => 0,
Carp => 0,
Config::IniFiles => 0,
Gedcom => 0,
Gedcom::Date => 0,
HTML::Template => 0,
Path::Class => 0,
 },
 script_files => ['bin/timeline.pl'],
) -> create_build_script();