aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cocot.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/cocot.rb b/Library/Formula/cocot.rb
new file mode 100644
index 000000000..edbe3c8fe
--- /dev/null
+++ b/Library/Formula/cocot.rb
@@ -0,0 +1,11 @@
+require 'formula'
+
+class Cocot <Formula
+ head 'git://github.com/vmi/cocot.git', :branch => 'master'
+ homepage 'http://vmi.jp/software/cygwin/cocot.html'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end