aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/newlisp.rb
blob: ed93e8b2e47928b76f9557825b2b94d73ec6b61e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Newlisp <Formula
  url 'http://www.newlisp.org/downloads/newlisp-10.2.8.tgz'
  homepage 'http://www.newlisp.org/'
  md5 '4b728ce4d25cc6cbb4f53f8c98a02733'

  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