The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use inc::Module::Install 1.16;
use Module::Install::Share;
use Module::Install::AutoInstall;

if ( -e 'MANIFEST.SKIP' ) {
    system( 'pod2text lib/Catalyst/Helper/View/SemanticUI.pm > README' );
}

perl_version '5.012001';
version_from 'lib/Catalyst/Helper/View/SemanticUI.pm';

name 'Catalyst-Helper-View-SemanticUI';
all_from 'lib/Catalyst/Helper/View/SemanticUI.pm';
requires 'File::ShareDir';

requires 'Catalyst'        => '5.7';
requires 'Template'        => 0;
requires 'Catalyst::View::TT' => 0;
requires 'Path::Class' => 0;

test_requires 'Test::More';
test_requires 'Test::Pod';

install_share 'share';

auto_install;

resources
    repository => 'https://github.com/ferz/Catalyst--Helper--View--SemanticUI';

abstract 'Helper for Semantic UI and TT view which builds a skeleton web site';

makemaker_args(
    META_MERGE        => {
	"meta-spec" => { version => 2 },
	resources => {
	    repository => {
		type => 'git',
		url => 'git@github.com:ferz/Catalyst--Helper--View--SemanticUI.git',
		web => 'https://github.com/ferz/Catalyst--Helper--View--SemanticUI',
	    },
	},
    },
    META_ADD => {
	resources => {
	    repository => 'https://github.com/ferz/Catalyst--Helper--View--SemanticUI',
	},
    }
    );

WriteAll;