1use ExtUtils::MakeMaker;
2
3my %opts = (
4    'NAME'	=> 'Sort::Tree',
5    'VERSION_FROM' => 'lib/Sort/Tree.pm' # finds $VERSION
6);
7
8if ($ExtUtils::MakeMaker::VERSION >= 5.43) {
9    $opts{AUTHOR}   = 'Bryce Harrington';
10    $opts{ABSTRACT} = 'Sorts data structure into child/parent hierarchy';
11}
12
13WriteMakefile( %opts )
14
15