lci (interpreter for lambda calculus) 0.6
Closes Homebrew/homebrew#16770. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
13f713afa5
commit
2d9a7cc2ef
1 changed files with 12 additions and 0 deletions
12
Formula/lci.rb
Normal file
12
Formula/lci.rb
Normal 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
|
Loading…
Reference in a new issue