root/lang/javascript/Object.toSource/Build.PL

Revision 1782, 0.6 kB (checked in by holidays-l, 13 months ago)

lang/javascript/Object.toSource: imported

  • Property svn:executable set to *
  • Property svn:keywords set to Date Revision Author HeadURL Id
Line 
1#!/usr/bin/env perl
2#
3# $Id$
4#
5package main;
6use strict;
7use warnings;
8use utf8;
9our $VERSION = eval { require version; version::qv('0.0.1') };
10
11use Carp;
12use English qw(-no_match_vars);
13use Module::Build::JSAN;
14
15my $build = Module::Build::JSAN->new(
16    module_name    => 'Object.toSource',
17    license        => 'mit',
18    dist_author    => 'Hironori Yoshida <yoshida@cpan.org>',
19    dist_abstract  => 'toSource',
20    dist_version   => $VERSION,
21    keywords       => [qw(object)],
22    build_requires => { 'Test.Simple' => 0.21, },
23    requires       => {},
24    sign           => 1,
25);
26$build->create_build_script;
Note: See TracBrowser for help on using the browser.