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

class Ktoblzcheck < Formula
  url 'http://downloads.sourceforge.net/project/ktoblzcheck/ktoblzcheck-1.34.tar.gz'
  homepage 'http://ktoblzcheck.sourceforge.net/'
  md5 '49cee11021614946400b96cc5603f1a5'

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