aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/auctex.rb
blob: 29f0dfba8ce97940ac3f5ef6403ab0a8546a4bcd (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
require 'formula'

class Auctex < Formula
  homepage 'http://www.gnu.org/software/auctex/'
  url 'http://ftpmirror.gnu.org/auctex/auctex-11.87.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/auctex/auctex-11.87.tar.gz'
  sha1 '0be92c7d8f89d57346fe07f05a1a045ffd11cd71'

  depends_on :tex

  def options
    [['--with-emacs=</full/path/to/emacs>', "Force a different emacs"]]
  end

  def which_emacs
    # check arguments for a different emacs
    ARGV.each do |a|
      if a.index('--with-emacs')
        return a.sub('--with-emacs=', '')
      end
    end
    which('emacs').to_s
  end

  def install
    # configure fails if the texmf dir is not there yet
    brew_texmf = share + 'texmf'
    brew_texmf.mkpath

    system "./configure", "--prefix=#{prefix}",
                          "--with-texmf-dir=#{brew_texmf}",
                          "--with-emacs=#{which_emacs}",
                          "--with-lispdir=#{share}/emacs/site-lisp"

    system "make"
    ENV.deparallelize # Needs a serialized install
    system "make install"
  end

  def caveats
    # check if the used emacs is in HOMEBREW_PREFIX/bin
    # for which case HOMEBREW_PREFIX/share/emacs/site-lisp should already
    # be by default in the load-path
    if which_emacs.index("#{HOMEBREW_PREFIX}/bin")
      dot_emacs = <<-EOS
      (require 'tex-site)
      EOS
    else
      dot_emacs = <<-EOS
      (add-to-list 'load-path "#{HOMEBREW_PREFIX}/share/emacs/site-lisp")
      (require 'tex-site)
      EOS
    end

    <<-EOS.undent
    texmf files installed into:
      #{HOMEBREW_PREFIX}/share/texmf/

    You can add it to your TEXMFHOME using:
      sudo tlmgr conf texmf TEXMFHOME "~/Library/texmf:#{HOMEBREW_PREFIX}/share/texmf"

    Emacs package installed into:
      #{HOMEBREW_PREFIX}/share/emacs/site-lisp

    To activate, add the following to your .emacs:
#{dot_emacs}
    EOS
  end

end