homebrew-core/Formula/cocot.rb

12 lines
254 B
Ruby

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