1# This file is under the MIT X11 License:
2# http://www.opensource.org/licenses/mit-license.php
3
4use strict;
5use warnings;
6
7use File::Spec;
8use lib File::Spec->catdir(File::Spec->curdir(), "inc");
9
10use Test::Run::Builder;
11
12my $build = Test::Run::Builder->new(
13    module_name => "Games::LMSolve",
14    build_requires =>
15    {
16        "Test::More" => 0,
17    },
18    requires =>
19    {
20        'English' => 0,
21        'Exporter' => 0,
22        'Getopt::Long' => 0,
23        'Pod::Usage' => 0,
24        'strict' => 0,
25        'vars' => 0,
26        'warnings' => 0,
27    },
28    dist_author => 'Shlomi Fish <shlomif@iglu.org.il>',
29    dist_version_from => "lib/Games/LMSolve/Base.pm",
30    license => "mit",
31    create_makefile_pl => 'traditional',
32    script_files => ["lm-solve"],
33    meta_merge =>
34    {
35        resources =>
36        {
37            repository => "http://svn.berlios.de/svnroot/repos/quad-pres/lm-solve/",
38            homepage => "http://www.shlomifish.org/lm-solve/",
39        },
40        keywords =>
41        [
42            "alice",
43            "brfs",
44            "dfs",
45            "game",
46            "games",
47            "inheritance",
48            "logic",
49            "logic mazes",
50            "mazes",
51            "minotaur",
52            "plank",
53            "pure-perl",
54            "puzzle",
55            "puzzles",
56            "riddle",
57            "riddles",
58            "scan",
59            "search",
60            "swamp",
61            "theseus",
62            "tilt",
63        ],
64    },
65);
66
67$build->create_build_script;
68
69