aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ktoblzcheck.rb
blob: b16d12efcb88e93974155823d2b75cf13869eb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Ktoblzcheck < Formula
  homepage 'http://ktoblzcheck.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/ktoblzcheck/ktoblzcheck-1.40.tar.gz'
  sha1 '6bd54cdbeef15db63885a434362e45b7ac80c995'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    ENV.j1
    system "make install"
  end
end