homebrew-core/Formula/upx.rb
shansen 1fb76f8a21 UPX 3.08
Added HEAD repository.
Removed self upx'ing since it segfaults when brew strips the binary.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-27 20:56:48 -08:00

15 lines
365 B
Ruby

require 'formula'
class Upx < Formula
url 'http://upx.sourceforge.net/download/upx-3.08-src.tar.bz2'
head 'http://upx.hg.sourceforge.net:8000/hgroot/upx/upx', :using => :hg
homepage 'http://upx.sourceforge.net'
md5 '54c76fa52cad578ff23ef98aee91e3f5'
depends_on 'ucl'
def install
system "make all"
bin.install "src/upx.out" => "upx"
end
end