aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJacob Jewell2012-09-08 13:16:31 -0400
committerAdam Vandenberg2012-09-14 07:07:29 -0700
commit2d982c03287eb38dd7a3f8263dea2cf3177bffe5 (patch)
tree5134ca301546e3e27bec34f427506c750c59ead4 /Library/Formula
parentf53ef3529c14f5848d7c51c6896ecdc4ba0750d7 (diff)
downloadhomebrew-2d982c03287eb38dd7a3f8263dea2cf3177bffe5.tar.bz2
Intercal 0.29
Closes #14810. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/intercal.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/intercal.rb b/Library/Formula/intercal.rb
new file mode 100644
index 000000000..76b5d427f
--- /dev/null
+++ b/Library/Formula/intercal.rb
@@ -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