# Copyright (c) 2009 by David Golden. All rights reserved. # Licensed under Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. # A copy of the License was distributed with this file or you may obtain a # copy of the License from http://www.apache.org/licenses/LICENSE-2.0 use 5.006; use strict; use lib 'inc'; eval "require Pod::WikiDoc"; my $class = $@ ? "Module::Build" : "Module::Build::WikiDoc"; eval "require $class"; my $build = $class->new( module_name => 'Capture::Tiny', dist_author => 'David Golden ', license => 'apache', create_readme => 1, create_makefile_pl => 'traditional', requires => { 'perl' => 5.006, 'Exporter' => 0, 'File::Spec' => 0, 'File::Temp' => 0.14, 'IO::Handle' => 0, ( $^O eq 'MSWin32' ? ('Win32API::File' => 0) : () ), }, build_requires => { 'Test::More' => 0.62, }, meta_add => { no_index => { directory => [ qw/ examples inc t /], }, resources => { repository => "http://github.com/dagolden/capture-tiny/", bugtracker => "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Capture-Tiny", }, }, ); $build->create_build_script;