homebrew-core/Formula/ktoblzcheck.rb
Alexis Hildebrandt 5c62e05995 ktoblzcheck 1.3.7
Closes Homebrew/homebrew#11001.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-17 08:33:16 -07:00

15 lines
427 B
Ruby

require 'formula'
class Ktoblzcheck < Formula
homepage 'http://ktoblzcheck.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/ktoblzcheck/ktoblzcheck-1.37.tar.gz'
md5 '93b540b5478bfb1b078613cbf1cc2446'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
ENV.j1
system "make install"
end
end