Intercal 0.29

Closes Homebrew/homebrew#14810.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jacob Jewell 2012-09-08 13:16:31 -04:00 committed by Adam Vandenberg
parent d9c953960e
commit 57c8644727
1 changed files with 20 additions and 0 deletions

20
Formula/intercal.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class Intercal < Formula
homepage 'http://catb.org/esr/intercal/'
url 'http://overload.intercal.org.uk/c/intercal-0.29.pax.gz'
sha1 'a1109c97ab0a3ccc5ad181cb6d4b7aa470a69e1d'
depends_on :autoconf
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/convickt"
system "#{bin}/ick"
end
end