aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ktoblzcheck.rb
blob: da7c42acd89d2d3673a215d2e45d44b0c4ddda70 (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'
  md5 'ef5efd6e2c31aaf6405060ec477c200c'

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