diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/newlisp.rb | 23 |
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 |
