blob: aa0d7d7b1206befb9839129a67ca50f70629f774 (
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.07-src.tar.bz2'
homepage 'http://upx.sourceforge.net'
md5 '8186ab103288242f7e8ecad1acd4af03'
depends_on 'ucl'
def install
system "make all"
system "src/upx.out src/upx.out"
bin.install "src/upx.out" => "upx"
end
end
|