aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ktoblzcheck.rb
blob: fb7d5b87a2f3daf1cfc662cf0da6943fb03f972a (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.39.tar.gz'
  sha1 'b88ae800ed4cf7a1b8547eb0104fc6663334716d'

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