summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2019-06-26 12:52:24 -0700
committerRuss Allbery <rra@cpan.org>2019-06-26 12:52:24 -0700
commitca1eb7306bdaaa6524c5796d477ae1e5eb49b43e (patch)
tree8ae9b877397bfa973da1e2ca8fbda4cf95c0643f /Build.PL
parent8582ba05c2de1a8fdd1f59dae0452535abf41297 (diff)
Add docknot dist command
Add new docknot dist command and App::DocKnot::Dist module, which runs appropriate commands to create a distribution tarball.
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL19
1 files changed, 10 insertions, 9 deletions
diff --git a/Build.PL b/Build.PL
index da9557a..d61acc7 100644
--- a/Build.PL
+++ b/Build.PL
@@ -2,7 +2,7 @@
#
# Build script for the docknot application.
#
-# Copyright 2013, 2016, 2018 Russ Allbery <rra@cpan.org>
+# Copyright 2013, 2016, 2018-2019 Russ Allbery <rra@cpan.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
@@ -61,15 +61,16 @@ my $build = Module::Build->new(
},
# Other package relationships.
- configure_requires => { 'Module::Build' => 0.36 },
- test_requires => { 'IPC::System::Simple' => 0 },
+ configure_requires => { 'Module::Build' => 0.36 },
requires => {
- 'File::BaseDir' => 0,
- 'File::ShareDir' => 0,
- 'JSON' => 0,
- 'Perl6::Slurp' => 0,
- 'Template' => 0,
- perl => '5.024',
+ 'File::BaseDir' => 0,
+ 'File::ShareDir' => 0,
+ 'IPC::Run' => 0,
+ 'IPC::System::Simple' => 0,
+ 'JSON' => 0,
+ 'Perl6::Slurp' => 0,
+ 'Template' => 0,
+ perl => '5.024',
},
);