blob: c220fd14895fc86a9b4197ea8b862c31ddfbeb1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Chuck < Formula
  homepage 'http://chuck.cs.princeton.edu/'
  url 'http://chuck.cs.princeton.edu/release/files/chuck-1.3.1.3.tgz'
  sha1 '67d45941535f311b7700ed4958a4ad6929bca284'
  def install
    cd "src" do
      system "make osx"
      bin.install "chuck"
    end
    (share/'chuck').install "examples/"
  end
end
  |