aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ktoblzcheck.rb
blob: f5c4f59c5ea6d636a39f8f39c66f3a67f0a2fe3e (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.28.tar.gz'
  homepage 'http://ktoblzcheck.sourceforge.net/'
  md5 'c0d4eea78f30e9bef4c5770c4773cde0'

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