summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorgregor herrmann <gregoa@debian.org>2012-06-04 18:32:47 +0200
committergregor herrmann <gregoa@debian.org>2012-06-04 18:32:47 +0200
commitaacfa4d49672b4f8df61408c6d254eeab51d0681 (patch)
tree756bf6eda8892f930d2431469d0155fd4f027837 /Makefile.PL
parentdbabd8a373b0e5dbc1977405046288fff6a50dfd (diff)
Imported Upstream version 1.26
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-xMakefile.PL5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 6835514..5cc93c5 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,7 +4,10 @@ use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'RiveScript',
VERSION_FROM => 'lib/RiveScript.pm', # finds $VERSION
- PREREQ_PM => {}, # e.g., Module::Name => 1.1
+ PREREQ_PM => {
+ JSON => 1.0,
+ }, # e.g., Module::Name => 1.1
+ EXE_FILES => [ 'bin/rivescript' ],
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/RiveScript.pm', # retrieve abstract from module
AUTHOR => 'Noah Petherbridge <kirsle@cpan.org>') : ()),