aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cocot.rb
blob: 4ad0ffd4836cd9826b9788172133da279f125d5b (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'
  sha1 '66dde7a784addd9aadd8223af6e677ff0d56ac49'
  head 'https://github.com/vmi/cocot.git', :branch => 'master'

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