Formula: add ucl and upx (which depends on ucl)

This commit is contained in:
Lin Jen-Shin 2010-06-17 20:39:49 +08:00 committed by Adam Vandenberg
parent 044940c634
commit a690ec4483

12
Formula/ucl.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Ucl <Formula
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