2010-06-17 12:39:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-10-16 21:52:07 +00:00
|
|
|
class Lzma < Formula
|
|
|
|
url 'http://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/4.65/lzma465.tar.bz2'
|
|
|
|
sha1 '5ec1c4606fec88c770a9712073e83916f8aed173'
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Upx < Formula
|
2010-06-17 12:39:49 +00:00
|
|
|
homepage 'http://upx.sourceforge.net'
|
2012-10-16 21:52:07 +00:00
|
|
|
url 'http://upx.sourceforge.net/download/upx-3.08-src.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '5ccbc0aacfd3aaee407eceab06ec5989bf1d153a'
|
2012-10-16 21:52:07 +00:00
|
|
|
head 'http://upx.hg.sourceforge.net:8000/hgroot/upx/upx', :using => :hg
|
2010-06-17 12:39:49 +00:00
|
|
|
|
|
|
|
depends_on 'ucl'
|
|
|
|
|
|
|
|
def install
|
2012-10-16 21:52:07 +00:00
|
|
|
Lzma.new.brew {(buildpath+'lzmasdk').install Dir['*']}
|
|
|
|
ENV['UPX_LZMADIR'] = (buildpath+'lzmasdk')
|
|
|
|
ENV['UPX_LZMA_VERSION'] = '0x465'
|
2010-06-17 12:39:49 +00:00
|
|
|
system "make all"
|
2012-10-16 21:52:07 +00:00
|
|
|
bin.install 'src/upx.out' => 'upx'
|
|
|
|
man1.install 'doc/upx.1'
|
2010-06-17 12:39:49 +00:00
|
|
|
end
|
|
|
|
end
|