Skip to content

Commit

Permalink
add a work-in-progress build system, to handle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
grawity committed Jul 13, 2021
1 parent 7bffe18 commit b8718d8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env perl
use warnings;
use strict;
use utf8;
use Module::Build;
use 5.008;

my $build = Module::Build->new(
module_name => "App::getpaste",
license => "MIT",
dist_author => "Mantas Mikulėnas <grawity\@gmail.com>",
dist_version => "1.0",
requires => {
"perl" => "5.10.0",
"HTML::Entities" => 0,
"JSON" => 0,
"LWP::UserAgent" => 0,
"MIME::Base64" => 0,
},
recommends => {
"Compress::Raw::Zlib" => 0,
"Compress::LZW" => 0,
"CryptX" => 0,
"IO::Uncompress::Inflate" => 0,
"IO::Uncompress::RawInflate" => 0,
},
script_files => [
"getpaste",
],
);

$build->create_build_script();

0 comments on commit b8718d8

Please sign in to comment.