PageRenderTime 47ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/Library/Formula/bedtools.rb

https://github.com/clouded-eas/homebrew
Ruby | 14 lines | 11 code | 3 blank | 0 comment | 0 complexity | b98288cbe6243e682a9ce431f89a7fc7 MD5 | raw file
  1. require 'formula'
  2. class Bedtools < Formula
  3. homepage 'http://code.google.com/p/bedtools/'
  4. url 'http://bedtools.googlecode.com/files/BEDTools.v2.17.0.tar.gz'
  5. sha1 '1b1de3c35394a423f9ad98a9957a8853b426a578'
  6. head 'https://github.com/arq5x/bedtools.git'
  7. def install
  8. system "make all"
  9. prefix.install 'bin'
  10. end
  11. end