8c1fc0288b
Closes Homebrew/homebrew#12191. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
22 lines
608 B
Ruby
22 lines
608 B
Ruby
require 'formula'
|
|
|
|
class Vcftools < Formula
|
|
homepage 'http://vcftools.sourceforge.net/index.html'
|
|
url 'http://downloads.sourceforge.net/project/vcftools/vcftools_0.1.9.tar.gz'
|
|
md5 '57f3b8d7ecb26a12559595851607f023'
|
|
|
|
def install
|
|
system "make", "install", "PREFIX=#{prefix}", "CPP=#{ENV.cxx}"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To use the Perl modules, make sure Vcf.pm, VcfStats.pm, and FaSlice.pm
|
|
are included in your PERL5LIB environment variable:
|
|
export PERL5LIB=#{HOMEBREW_PREFIX}/lib/perl5/site_perl:${PERL5LIB}
|
|
EOS
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/vcftools"
|
|
end
|
|
end
|