diff options
| author | Adam Stankiewicz | 2012-12-27 22:32:30 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-05 08:36:57 -0800 |
| commit | 02431765ad2db05158456d7b0deb108517f5dc67 (patch) | |
| tree | ba92afbb52ee1de91ee4b1d66bead27e47800ae5 /Library | |
| parent | c5e1cff717aeb84d9712674dce2f097b0d023b49 (diff) | |
| download | homebrew-02431765ad2db05158456d7b0deb108517f5dc67.tar.bz2 | |
lci (interpreter for lambda calculus) 0.6
Closes #16770.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lci.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/lci.rb b/Library/Formula/lci.rb new file mode 100644 index 000000000..68011e496 --- /dev/null +++ b/Library/Formula/lci.rb @@ -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 |
