summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 0f4899d218dd995b3f61a76d70c414f938fe177b (plain) (blame)
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
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# Define metadata
name           'Language-TECO';
all_from       'lib/Language/TECO.pm';

feature 'Command line te script' =>
        -default => 1,
        'Term::ReadKey' => '0';

feature 'IRC evalbot' =>
        -default => 0,
        'Bot::BasicBot' => '0';

build_requires 'Test::More';
build_requires 'Test::Exception';

install_script('bin/te');
install_script('bin/tecobot');

tests          't/*.t';

auto_install;
WriteAll;