homebrew-core/Formula/cocot.rb

12 lines
256 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cocot < Formula
2011-05-27 05:02:55 +00:00
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