blob: 2f0012b05a40d38bb9b7a3ba32f2de5fc04220e3 (
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/archive/cocot-1.1-20120313.tar.gz'
sha1 'ffc36f56e47c22a963ef48cb67e60b0337b58bc6'
head 'https://github.com/vmi/cocot.git', :branch => 'master'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|