afe0f4dbdf
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.
12 lines
320 B
Ruby
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
|