Developer-Dashboard

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

        'YAML::XS'              => 0,
        'TOML::Parser'          => 0,
        'Capture::Tiny'         => 0,
        'Digest::MD5'           => 0,
        'Digest::SHA'           => 0,
        'Archive::Zip'          => 0,
        'MIME::Base64'          => 0,
        'IO::Compress::Gzip'    => 0,
        'IO::Uncompress::Gunzip'=> 0,
        'Dancer2'               => 0,
        'Plack'                 => 0,
        'Starman'               => 0,
        'Template'              => 0,
        'URI'                   => 0,
        'URI::Escape'           => 0,
        'XML::Parser'           => 0,
        'Time::HiRes'           => 0,
        'POSIX'                 => 0,
    },
    LICENSE      => 'perl',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker'    => 0,
        'File::ShareDir::Install' => 0,
    },
    META_MERGE   => {
        resources => {
            homepage   => 'https://github.mf/manif3station/developer-dashboard',
            bugtracker => {
                web => 'https://github.mf/manif3station/developer-dashboard/issues',
            },
            repository => {
                type => 'git',
                url  => 'git@github.mf:manif3station/developer-dashboard.git',
                web  => 'https://github.mf/manif3station/developer-dashboard',
            },
        },
    },
);

package MY;

use File::ShareDir::Install qw(postamble);

# postamble()
# Appends the File::ShareDir::Install postamble so packaged installs refresh
# dist share assets, then adds the home-runtime helper bootstrap hook used by
# checkout and local installs.
# Input: ExtUtils::MakeMaker MY package object.
# Output: full make postamble text string.
sub postamble {
    my $self = shift;
    my $share_postamble = File::ShareDir::Install::postamble($self);
    return $share_postamble . <<'END_POSTAMBLE';
.PHONY: install pure_install install-private-cli-tools
install ::
	$(NOECHO) $(PERL) -e "1;"

pure_install :: install-private-cli-tools

install-private-cli-tools :
	$(NOECHO) $(PERL) -e 'use File::Copy; use File::Path qw(make_path); use File::Spec; my $$home = $$ENV{HOME} || (getpwuid($$>))[7]; my $$cli_dir = File::Spec->catdir($$home, ".developer-dashboard", "cli"); make_path($$cli_dir) unless -d $$cli_dir; fo...
END_POSTAMBLE
}



( run in 0.833 second using v1.01-cache-2.11-cpan-0b5f733616e )