lci (interpreter for lambda calculus) 0.6

Closes Homebrew/homebrew#16770.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Adam Stankiewicz 2012-12-27 22:32:30 +01:00 committed by Adam Vandenberg
parent 13f713afa5
commit 2d9a7cc2ef

12
Formula/lci.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Lci < Formula
homepage 'http://lci.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/lci/lci/0.6/lci-0.6.tar.gz'
sha1 '0b03f4c2d47a3e217f760e371ec60bed8b477b02'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end