blob: 0dad20e2c02b7b03d815dc46a714ab61c4a4d79b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Kelbt < Formula
url 'http://www.complang.org/kelbt/kelbt-0.14.tar.gz'
homepage 'http://www.complang.org/kelbt/'
md5 '6eeaaa79e665389d7953361d10815fb5'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|