summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-05-22 16:14:17 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-05-22 16:14:17 -0500
commit5aaf1755e6e8f155e6de6de0f2275731ce96b21b (patch)
treeb76d4d1ad3e3b8ddf099bf0b8e77bbf4b8110873
parent4afca076e5f07449e1a07bd4fe5e3d15f24f7bfc (diff)
downloadlanguage-teco-5aaf1755e6e8f155e6de6de0f2275731ce96b21b.tar.gz
language-teco-5aaf1755e6e8f155e6de6de0f2275731ce96b21b.zip
fix up the makefile
-rw-r--r--Makefile.PL15
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL
index ca871d7..0f4899d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,10 +5,21 @@ use inc::Module::Install;
name 'Language-TECO';
all_from 'lib/Language/TECO.pm';
-requires '';
+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;
-