#!/usr/bin/perl
# Copyright 2010 Kevin Ryde
# This file is part of I18N-Langinfo-Wide.
#
# I18N-Langinfo-Wide is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3, or (at your option) any
# later version.
#
# I18N-Langinfo-Wide is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with I18N-Langinfo-Wide. If not, see .
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
use lib 'inc';
use MyMakeMakerExtras;
MyMakeMakerExtras::WriteMakefile
(NAME => 'I18N::Langinfo::Wide',
ABSTRACT => 'Langinfo and POSIX functions with wide-char strings.',
VERSION_FROM => 'lib/I18N/Langinfo/Wide.pm',
PREREQ_PM => {
# version 2.25 for Encode::Alias recognise "646" on netbsd
'Encode' => '2.25',
# perhaps not supplied by default on msdos ...
'I18N::Langinfo' => 0,
},
AUTHOR => 'Kevin Ryde ',
LICENSE => 'gpl',
SIGN => 1,
MIN_PERL_VERSION => 5.008001,
META_MERGE
=> { resources
=> { homepage
=> 'http://user42.tuxfamily.org/i18n-langinfo-wide/index.html',
},
},
);