blob: 7ee607a0e29ba78c775a1c6cc45f9b6729192a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Vcftools < Formula
homepage 'http://vcftools.sourceforge.net/index.html'
url 'http://downloads.sourceforge.net/project/vcftools/vcftools_0.1.8a.tar.gz'
md5 'a4ec90c7583dd11bdc20a5f78a5a7857'
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
|