diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cocot.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cocot.rb b/Library/Formula/cocot.rb new file mode 100644 index 000000000..dc5dd83c5 --- /dev/null +++ b/Library/Formula/cocot.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Cocot < Formula + homepage 'http://vmi.jp/software/cygwin/cocot.html' + url 'https://github.com/vmi/cocot/tarball/cocot-1.1-20120313' + version '1.1-20120313' + md5 '666c1e52c1648094f8758689ad3f6b4b' + head 'https://github.com/vmi/cocot.git', :branch => 'master' + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
