aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plink.rb
blob: b9a3f09b23262c7dc1b356fb6175b9a8171d294a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Plink < Formula
  url 'http://pngu.mgh.harvard.edu/~purcell/plink/dist/plink-1.07-src.zip'
  homepage 'http://pngu.mgh.harvard.edu/~purcell/plink/'
  sha1 'd41a2d014ebc02bf11e5235292b50fad6dedd407'

  def install
    ENV.deparallelize
    inreplace "Makefile", "SYS = UNIX", "SYS = MAC"
    system "make"
    (share+'plink').install %w{test.map test.ped}
    bin.install "plink"
  end
end