aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cocot.rb
blob: dc5dd83c50fdb846e89948e941c0abf19d8202fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Cocot < Formula
  homepage 'http://vmi.jp/software/cygwin/cocot.html'
  url 'https://github.com/vmi/cocot/tarball/cocot-1.1-20120313'
  version '1.1-20120313'
  md5 '666c1e52c1648094f8758689ad3f6b4b'
  head 'https://github.com/vmi/cocot.git', :branch => 'master'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end