require 'formula' class Gocr < Formula homepage 'http://jocr.sourceforge.net/' url 'http://www-e.uni-magdeburg.de/jschulen/ocr/gocr-0.50.tar.gz' sha1 '2018ddf7be1c95dcc12f63f7ac40ad98da06f8a4' def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" # --mandir doesn't work correctly; fix broken Makefile inreplace "man/Makefile" do |s| s.change_make_var! 'mandir', '/share/man' end system "make install" end end