blob: 07677feaa4c7b6dc115f9a45a7daf64e28db3b12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require "formula"
class Gcore < Formula
  homepage "http://osxbook.com/book/bonus/chapter8/core/"
  url "http://osxbook.com/book/bonus/chapter8/core/download/gcore-1.3.tar.gz"
  sha1 "92c0bf04577f86b05fb7bede7aa196d257f8aad2"
  def install
    ENV.universal_binary
    system "make"
    bin.install "gcore"
  end
end
  |