Skip to content

Commit

Permalink
switch to MakeMaker for now
Browse files Browse the repository at this point in the history
  • Loading branch information
grawity committed Jul 13, 2021
1 parent b8718d8 commit 73fd907
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 32 deletions.
32 changes: 0 additions & 32 deletions Build.PL

This file was deleted.

22 changes: 22 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/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>",
LICENSE => "mit",
PREREQ_PM => {
"perl" => "v5.10",
"HTML::Entities" => 0,
"JSON" => 0,
"LWP::UserAgent" => 0,
"MIME::Base64" => 0,
},
EXE_FILES => [
"getpaste",
],
);

0 comments on commit 73fd907

Please sign in to comment.