blob: d4d8ef3ada5bd9b03ab6534e31a7eac3d9a6d371 (
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'
sha1 '5ccbc0aacfd3aaee407eceab06ec5989bf1d153a'
depends_on 'ucl'
def install
system "make all"
bin.install "src/upx.out" => "upx"
end
end
|