Locale-Maketext-Gettext/Makefile.PL

27 lines
634 B
Makefile
Raw Normal View History

#! /usr/bin/perl -w
require 5.008;
use strict;
2021-02-07 23:37:55 +08:00
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
2021-02-07 23:08:40 +08:00
NAME => "Locale::Maketext::Gettext",
2021-02-07 19:20:27 +08:00
VERSION => "1.31",
ABSTRACT => "Joins gettext and Maketext frameworks",
AUTHOR => "imacat <imacat\@mail.imacat.idv.tw>",
PREREQ_PM => { },
2021-02-07 23:37:55 +08:00
LICENSE => "perl",
SIGN => 1,
EXE_FILES => [ "script/maketext" ],
dist => {
COMPRESS => "gzip -9",
SUFFIX => ".gz",
},
clean => {
FILES => "t/test_native.po t/locale/en/LC_MESSAGES/test_native.mo",
},
);
__END__