2010-06-17 12:39:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Upx < Formula
|
2012-01-20 22:38:50 +00:00
|
|
|
url 'http://upx.sourceforge.net/download/upx-3.08-src.tar.bz2'
|
|
|
|
head 'http://upx.hg.sourceforge.net:8000/hgroot/upx/upx', :using => :hg
|
2010-06-17 12:39:49 +00:00
|
|
|
homepage 'http://upx.sourceforge.net'
|
2012-01-20 22:38:50 +00:00
|
|
|
md5 '54c76fa52cad578ff23ef98aee91e3f5'
|
2010-06-17 12:39:49 +00:00
|
|
|
|
|
|
|
depends_on 'ucl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make all"
|
|
|
|
bin.install "src/upx.out" => "upx"
|
|
|
|
end
|
|
|
|
end
|