homebrew-core/Formula/cocot.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

14 lines
402 B
Ruby

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