2010-06-17 12:39:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ucl < Formula
|
2010-06-17 12:39:49 +00:00
|
|
|
url 'http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz'
|
|
|
|
homepage 'http://www.oberhumer.com/opensource/ucl/'
|
|
|
|
md5 '852bd691d8abc75b52053465846fba34'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|