aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJordan Bracco2009-11-12 19:15:15 +0100
committerMax Howell2009-12-05 15:58:20 +0000
commitd114f39e993196fbb4afadfb1865f6baf4939314 (patch)
tree918321685a0bce68c508782aee362c90a49fff55 /Library/Formula
parent9d6910119b3495f4c286bb886c99e87b9b34119a (diff)
downloadhomebrew-d114f39e993196fbb4afadfb1865f6baf4939314.tar.bz2
io language
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/io.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/io.rb b/Library/Formula/io.rb
new file mode 100644
index 000000000..f4fa29a47
--- /dev/null
+++ b/Library/Formula/io.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Io <Formula
+ head 'git://github.com/stevedekorte/io.git'
+ homepage 'http://iolanguage.com/'
+
+ def install
+ system "make vm"
+ system "make"
+ system "make install"
+ end
+end