2012-01-19 14:27:15 +00:00
|
|
|
class Abcl < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Armed Bear Common Lisp: a full implementation of Common Lisp"
|
2014-05-18 22:50:52 +00:00
|
|
|
homepage "http://abcl.org"
|
2015-12-21 08:30:45 +00:00
|
|
|
url "http://abcl.org/releases/1.3.3/abcl-bin-1.3.3.tar.gz"
|
|
|
|
sha256 "01e1d05b14eca802c727dea8be9350e22dfddf8a8637ec9fbd8323c4f7f2a954"
|
2012-01-19 14:27:15 +00:00
|
|
|
|
2015-12-22 09:30:31 +00:00
|
|
|
bottle :unneeded
|
2015-05-30 22:50:01 +00:00
|
|
|
|
2015-02-22 20:15:30 +00:00
|
|
|
depends_on :java => "1.5+"
|
2014-05-18 22:50:52 +00:00
|
|
|
depends_on "rlwrap"
|
2012-01-19 14:27:15 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-18 22:50:52 +00:00
|
|
|
libexec.install "abcl.jar", "abcl-contrib.jar"
|
2012-01-19 14:27:15 +00:00
|
|
|
(bin+"abcl").write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
2014-05-18 22:50:52 +00:00
|
|
|
rlwrap java -jar "#{libexec}/abcl.jar" "$@"
|
2012-01-19 14:27:15 +00:00
|
|
|
EOS
|
|
|
|
end
|
2015-02-22 20:15:30 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
assert_match "42", pipe_output("#{bin}/abcl", "(+ 1 1 40)")
|
|
|
|
end
|
2012-01-19 14:27:15 +00:00
|
|
|
end
|