From 76de754e7005cef68c5b811e506194295e42e669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=B6ppner?= <0xffea@gmail.com> Date: Sat, 19 Sep 2009 11:35:43 +0200 Subject: [PATCH] GNU Smalltalk formula GNU Smalltalk is a free implementation of the Smalltalk-80 language. --- Formula/gnu-smalltalk.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/gnu-smalltalk.rb diff --git a/Formula/gnu-smalltalk.rb b/Formula/gnu-smalltalk.rb new file mode 100644 index 0000000000..f6b7852e90 --- /dev/null +++ b/Formula/gnu-smalltalk.rb @@ -0,0 +1,19 @@ +require 'brewkit' + +class GnuSmalltalk ["http://bitbucket.org/0xffea/patches/raw/bc22b0b12337/homebrew/smalltalk-001-install.diff"] + } + end + + def install + ENV['FFI_CFLAGS'] = '-I/usr/include/ffi' + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-readline=/usr/lib" + system "make install" + end +end