aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMichael Kohl2010-02-06 14:41:01 +0100
committerAdam Vandenberg2010-04-23 20:31:19 -0700
commitf6d71790230735a6948b0412ebd260293139d015 (patch)
treefe8680e19d4fee274450e7518b50ac27f03d473a /Library
parent8edaae3d1656c540bbb2f1058ca3c2a4071e01dc (diff)
downloadhomebrew-f6d71790230735a6948b0412ebd260293139d015.tar.bz2
Added formula for newLISP
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Update to 10.2.1
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/newlisp.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/newlisp.rb b/Library/Formula/newlisp.rb
new file mode 100644
index 000000000..bf97a9e77
--- /dev/null
+++ b/Library/Formula/newlisp.rb
@@ -0,0 +1,23 @@
+require 'formula'
+
+class Newlisp <Formula
+ url 'http://www.newlisp.org/downloads/newlisp-10.2.1.tgz'
+ homepage 'http://www.newlisp.org/'
+ md5 '27c51c0b95bdf0433e82eeff6010e93a'
+
+ depends_on 'readline'
+
+ def install
+ # Minimal install as describe in the README
+ system "./configure"
+ system "make"
+
+ bin.install 'newlisp'
+ end
+
+ def caveats; <<-EOS
+ Because of hardcoded paths in the newLISP source,
+ this formula does not install the Java-based IDE.
+ EOS
+ end
+end