homebrew-core/Formula/cocot.rb
2015-06-05 14:47:57 +01:00

15 lines
388 B
Ruby

require 'formula'
class Cocot < Formula
desc "Code converter on tty"
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'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end