aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcftools.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/vcftools.rb')
-rw-r--r--Library/Formula/vcftools.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/vcftools.rb b/Library/Formula/vcftools.rb
index 725c8b615..e3a7401be 100644
--- a/Library/Formula/vcftools.rb
+++ b/Library/Formula/vcftools.rb
@@ -5,6 +5,12 @@ class Vcftools < Formula
homepage 'http://vcftools.sourceforge.net/index.html'
md5 'd3e68027a7fe40d3f8cb28c3006c7248'
+ def patches
+ # Install Perl modules to /lib/perl5/site_perl and ensure VcfStats.pm is installed
+ # This is fixed in vcf source tree, will not be needed after version 0.1.7
+ DATA
+ end
+
def install
system "make install PREFIX=#{prefix} CPP=#{ENV.cxx}"
end
@@ -19,12 +25,6 @@ class Vcftools < Formula
export PERL5LIB=#{HOMEBREW_PREFIX}/lib/perl5/site_perl:${PERL5LIB}
EOS
end
-
- def patches
- # Install Perl modules to /lib/perl5/site_perl and ensure VcfStats.pm is installed
- # This is fixed in vcf source tree, will not be needed after version 0.1.7
- DATA
- end
end
__END__