2010-02-06 13:41:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Newlisp < Formula
|
2010-02-06 13:41:01 +00:00
|
|
|
homepage 'http://www.newlisp.org/'
|
2012-12-02 22:31:01 +00:00
|
|
|
url 'http://www.newlisp.org/downloads/newlisp-10.4.5.tgz'
|
|
|
|
sha1 '8e81b73b8d141250ab773952259cd69b228ae824'
|
2010-02-06 13:41:01 +00:00
|
|
|
|
2012-11-11 03:12:26 +00:00
|
|
|
depends_on 'readline'
|
2010-02-06 13:41:01 +00:00
|
|
|
|
|
|
|
def install
|
2010-10-05 06:20:45 +00:00
|
|
|
# Required to use our configuration
|
|
|
|
ENV.append_to_cflags "-DNEWCONFIG -c"
|
|
|
|
|
|
|
|
system "./configure-alt", "--prefix=#{prefix}", "--mandir=#{man}"
|
2010-02-06 13:41:01 +00:00
|
|
|
system "make"
|
2010-10-05 06:20:45 +00:00
|
|
|
system "make check"
|
|
|
|
system "make install"
|
2010-02-06 13:41:01 +00:00
|
|
|
end
|
|
|
|
|
2012-10-10 18:25:26 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If you have brew in a custom prefix, the included examples
|
|
|
|
will need to be be pointed to your newlisp executable.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2010-10-05 06:20:45 +00:00
|
|
|
# Use the IDE to test a complete installation
|
|
|
|
def test
|
2012-05-05 22:12:31 +00:00
|
|
|
system "#{bin}/newlisp-edit"
|
2010-02-06 13:41:01 +00:00
|
|
|
end
|
|
|
|
end
|