Skip to content

Instantly share code, notes, and snippets.

@dpo
Created February 17, 2014 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpo/9057535 to your computer and use it in GitHub Desktop.
Save dpo/9057535 to your computer and use it in GitHub Desktop.
require 'formula'
class Jellyfish < Formula
homepage 'http://www.cbcb.umd.edu/software/jellyfish/'
url 'ftp://ftp.genome.umd.edu/pub/jellyfish/jellyfish-2.0.0.tar.gz'
sha1 '65985a197e1fe57fd3965c055616eaafe0a748e8'
fails_with :clang do
cause 'gcc >= 4.4 is required to compile Jellyfish.'
end
fails_with :gcc => '4.3.6' do
cause 'gcc >= 4.4 is required to compile Jellyfish.'
end
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment