Skip to content

Commit

Permalink
Merge branch 'build'
Browse files Browse the repository at this point in the history
Actually have an explicit list of dependencies rather than asking users
to grep the thing.
  • Loading branch information
grawity committed Jul 13, 2021
2 parents 7bffe18 + b666592 commit 68f8b43
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env perl
use warnings;
use strict;
use utf8;
use ExtUtils::MakeMaker;
use 5.008;

WriteMakefile(
NAME => "App::getpaste",
AUTHOR => "Mantas Mikulėnas <grawity\@gmail.com>",
VERSION => "0.20",
LICENSE => "mit",
PREREQ_PM => {
"perl" => "v5.10",
"Compress::LZW" => 0,
"Compress::Raw::Zlib" => 0,
"CryptX" => 0,
"HTML::Entities" => 0,
"IO::Uncompress::Inflate" => 0,
"IO::Uncompress::RawInflate" => 0,
"JSON" => 0,
"LWP::UserAgent" => 0,
"MIME::Base64" => 0,
},
EXE_FILES => [
"getpaste",
],
);
2 changes: 1 addition & 1 deletion getpaste
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
# getpaste - retrieves raw text from pastebins
#
# (c) 2010-2015 Mantas Mikulėnas <grawity@gmail.com>
# (c) 2010-2021 Mantas Mikulėnas <grawity@gmail.com>
# Released under the MIT License (dist/LICENSE.mit)
use v5.10;
use warnings;
Expand Down

0 comments on commit 68f8b43

Please sign in to comment.