11 lines
256 B
Ruby
11 lines
256 B
Ruby
require 'formula'
|
|
|
|
class Cocot < Formula
|
|
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
|