Alien-KentSrc
view release on metacpan or search on metacpan
lib/Alien/KentSrc.pm view on Meta::CPAN
package Alien::KentSrc;
our $VERSION = '0.4';
use strict;
use warnings;
use base 'Alien::Base';
sub machtype {
shift->runtime_prop->{kent_machtype};
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Alien::KentSrc - Fetch/build/stash Kent src from L<http://hgdownload.cse.ucsc.edu/admin/>
=begin HTML
<a href="#">
<img src="https://img.shields.io/badge/perl-5.8.9+-blue.svg"
alt="Requires Perl 5.8.9+" />
</a>
<!-- CPAN -->
<a href="https://metacpan.org/pod/Alien::KentSrc">
<img src="https://img.shields.io/cpan/v/Alien-KentSrc.svg"
alt="CPAN" />
</a>
<!-- Travis -->
<a href="https://travis-ci.org/kiwiroy/alien-kentsrc">
<img src="https://travis-ci.org/kiwiroy/alien-kentsrc.svg?branch=master"
alt="Travis Build Status">
</a>
=end HTML
=head1 DESCRIPTION
Download, build and install Kent src library from
http://hgdownload.cse.ucsc.edu/admin/jksrc.vNNN.zip
=head1 SYNOPSIS
use Alien::KentSrc;
say Alien::KentSrc->version;
$ENV{KENT_SRC} = Alien::KentSrc->dist_dir;
$ENV{MACHTYPE} = Alien::KentSrc->machtype;
=head1 METHODS
In addition to those provide by the parent class L<Alien::Base>, Alien::KentSrc
defines the following new methods.
=head2 machtype
# "x86_64"
Alien::KentSrc->machtype;
Return the B<MACHTYPE> that I<jkweb.a> was built with.
=head1 AUTHOR
Roy Storey <kiwiroy@cpan.org>
=head1 SEE ALSO
=over 4
=item L<http://hgdownload.cse.ucsc.edu/downloads.html#source_downloads>
=item L<http://kentinformatics.com>
=back
=cut
( run in 2.105 seconds using v1.01-cache-2.11-cpan-d7a12ab2c7f )