aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plink.rb
blob: be606c3cba4ec04e1e93fdd145acf553a697bda2 (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/'
  md5 '4566376791df4e69459b849bd7078fa3'

  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