aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cocot.rb
blob: c9df3cb48b0c6c11a94dd356ce94a926a5823049 (plain)
1
2
3
4
5
6
7
8
9
10
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