blob: c9c970a3fa438f3daac2e5b2f80c6fc60df4c5ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
require 'formula'
class Cocot < Formula
  head 'https://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
  |