Skip to content

Instantly share code, notes, and snippets.

@siwells
Created September 20, 2012 20:37
Show Gist options
  • Save siwells/3758200 to your computer and use it in GitHub Desktop.
Save siwells/3758200 to your computer and use it in GitHub Desktop.
gforth homebrew formula -- works for me
require 'formula'
class Gforth < Formula
url 'http://www.complang.tuwien.ac.at/forth/gforth/gforth-0.7.0.tar.gz'
homepage 'http://www.jwdt.com/~paysan/gforth.html'
sha1 '5bb357268cba683f2a8c63d2a4bcab8f41cb0086'
def install
ENV.j1 # Parallel builds won't work
system "./configure", "x86_64-apple-darwin10.0.0"
system "make" # Separate build steps.
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment