blob: 8a2aab2f1d61cade0fdc09c68313a0b509fecb72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Lzma < Formula
url 'http://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/4.65/lzma465.tar.bz2'
sha1 '5ec1c4606fec88c770a9712073e83916f8aed173'
end
class Upx < Formula
homepage 'http://upx.sourceforge.net'
url 'http://upx.sourceforge.net/download/upx-3.09-src.tar.bz2'
sha1 'df474a9909e6697a4d3240767c34e2dcb39002c1'
head 'http://upx.hg.sourceforge.net:8000/hgroot/upx/upx', :using => :hg
depends_on 'ucl'
def install
Lzma.new.brew {(buildpath+'lzmasdk').install Dir['*']}
ENV['UPX_LZMADIR'] = (buildpath+'lzmasdk')
ENV['UPX_LZMA_VERSION'] = '0x465'
system "make all"
bin.install 'src/upx.out' => 'upx'
man1.install 'doc/upx.1'
end
end
|