homebrew-core/Formula/lzma.rb
Max Howell afe0f4dbdf TexLive, TexLiveTexmf, and LZMA Formula
Formulae for installing Tex Live 2008 on (Snow) Leopard. Tex Live is a TeX/LaTeX distribution for the purposes of mathematical/scientific typesetting.

Signed-off-by: Max Howell <max@methylblue.com>

I added the Texmf as a subformula to Tex-live as its installation was tied to Texmf quite tightly.
2009-11-08 15:21:14 +00:00

12 lines
320 B
Ruby

require 'formula'
class Lzma <Formula
url 'http://tukaani.org/lzma/lzma-4.32.7.tar.bz2'
homepage 'http://tukaani.org/lzma/'
md5 '4828bc9e409cf1f084bc9f2799c49f3d'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end