aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ktoblzcheck.rb
blob: e4cb9ae1c2d9d6b51c04bedd9fdf2a05d2d34cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require "formula"

class Ktoblzcheck < Formula
  homepage "http://ktoblzcheck.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/ktoblzcheck/ktoblzcheck-1.47.tar.gz"
  sha1 "bf099879916d22c9334ef94b4e782afecd319226"

  bottle do
    sha1 "7190e0fde6f0cbeb76b28981a7a6c497ed766455" => :mavericks
    sha1 "fcb5cb779e4a70797fc979a99bb9a3a6305607f4" => :mountain_lion
    sha1 "0627b12d557570f55d8c9d944199c08406d70732" => :lion
  end

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