blob: fd93a08c5ca91b91b10343ec69319e6520af522c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | 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
 |