Acme-GuessNumber/Makefile.PL

24 lines
503 B
Makefile
Raw Normal View History

2021-02-07 19:32:31 +08:00
#! /usr/bin/perl -w
2021-02-07 23:38:16 +08:00
require 5.008;
2021-02-07 19:32:31 +08:00
use strict;
2021-02-07 23:38:16 +08:00
use warnings FATAL => 'all';
2021-02-07 19:32:31 +08:00
use ExtUtils::MakeMaker;
WriteMakefile(
2021-02-07 23:07:07 +08:00
NAME => "Acme::GuessNumber",
2021-02-07 19:32:31 +08:00
VERSION => "0.04",
ABSTRACT => "Automatic number guessing game robot",
AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>",
PREREQ_PM => { },
PL_FILES => { },
2021-02-07 23:38:16 +08:00
LICENSE => "perl",
SIGN => 1,
2021-02-07 23:43:56 +08:00
2021-02-07 19:32:31 +08:00
dist => {
COMPRESS => "gzip -9",
SUFFIX => ".gz",
},
);
__END__