homebrew-core/Formula/ktoblzcheck.rb

16 lines
436 B
Ruby

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