diff options
| author | Robert Sanders | 2012-01-19 09:27:15 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-18 16:44:14 -0700 |
| commit | 30ad2d6f1dde086f167929e7366bc0a4e042c4f2 (patch) | |
| tree | 791605e5b71f0f7a6c7d875f99ea09d4d28584d0 /Library/Formula/abcl.rb | |
| parent | 6c6abcd322ff03e6506b426833afc2ef21766c7a (diff) | |
| download | homebrew-30ad2d6f1dde086f167929e7366bc0a4e042c4f2.tar.bz2 | |
ABCL 1.0.1
Armed Bear Common Lisp, an implementation of Common Lisp which runs on the JVM.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/abcl.rb')
| -rw-r--r-- | Library/Formula/abcl.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/abcl.rb b/Library/Formula/abcl.rb new file mode 100644 index 000000000..8cc418d58 --- /dev/null +++ b/Library/Formula/abcl.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Abcl < Formula + homepage 'http://common-lisp.net/project/armedbear/' + url 'http://common-lisp.net/project/armedbear/releases/1.0.1/abcl-bin-1.0.1.tar.gz' + md5 'bd95a55df30469b4f6d85af7c5ede297' + + depends_on 'rlwrap' + + def install + prefix.install "abcl.jar", "abcl-contrib.jar" + (bin+"abcl").write <<-EOS.undent + #!/bin/sh + rlwrap java -jar "#{prefix}/abcl.jar" "$@" + EOS + end +end |
