homebrew-core/Formula/gforth.rb

18 lines
590 B
Ruby
Raw Normal View History

2010-05-28 20:45:09 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Gforth < Formula
2012-11-28 05:55:56 +00:00
homepage 'http://bernd-paysan.de/gforth.html'
2010-05-28 20:45:09 +00:00
url 'http://www.complang.tuwien.ac.at/forth/gforth/gforth-0.7.0.tar.gz'
sha1 '5bb357268cba683f2a8c63d2a4bcab8f41cb0086'
2010-05-28 20:45:09 +00:00
def install
ENV.j1 # Parallel builds won't work
# Install 32-bit only, even on Snow Leopard. See:
# http://www.groupsrv.com/computers/about648918.html
ENV['CC'] = "#{ENV.cc} -m32"
2010-05-28 20:45:09 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make" # Separate build steps.
system "make install"
end
end