blob: 3cc8c0b3f786c5c3abb0b23da2476e4b7da40d9f (
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.31.tar.gz'
homepage 'http://ktoblzcheck.sourceforge.net/'
md5 '2bc5fd7b3d6785527f7f0ea565c35e29'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make"
ENV.j1
system "make install"
end
end
|