summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL27
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile.PL b/Makefile.PL
deleted file mode 100644
index 800d769..0000000
--- a/Makefile.PL
+++ /dev/null
@@ -1,27 +0,0 @@
-# Load the Module::Install bundled in ./inc/
-use inc::Module::Install;
-
-# Define metadata
-name 'Language-TECO';
-all_from 'lib/Language/TECO.pm';
-
-requires 'Class::Accessor::Fast';
-
-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;