aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/luajit.rb
blob: d5f8626c7c23c08ae69a7af0a2d9ccd389570802 (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
require 'formula'

class Luajit < Formula
  url 'http://luajit.org/download/LuaJIT-2.0.0-beta9.tar.gz'
  head 'http://luajit.org/git/luajit-2.0.git', :using => :git
  homepage 'http://luajit.org/luajit.html'
  md5 'e7e03e67e2550817358bc28b44270c6d'

  # Skip cleaning both empty folders and bin/libs so external symbols still work.
  skip_clean :all

  fails_with_llvm "_Unwind_Exception_Class undeclared", :build => 2336

  def options
    [["--debug", "Build with debugging symbols."]]
  end

  def install
    if ARGV.include? '--debug'
      system "make", "CCDEBUG=-g", "PREFIX=#{prefix}",
             "TARGET_CC=#{ENV['CC']}",
             "amalg"
      system "make", "CCDEBUG=-g", "PREFIX=#{prefix}",
             "TARGET_CC=#{ENV['CC']}",
             "install"
    else
      system "make", "PREFIX=#{prefix}",
             "TARGET_CC=#{ENV['CC']}",
             "amalg"
      system "make", "PREFIX=#{prefix}",
             "TARGET_CC=#{ENV['CC']}",
             "install"
    end

    # Non-versioned symlink
    if ARGV.build_head?
      version = "2.0.0-beta9"
    else
      version = @version
    end
    ln_s bin+"luajit-#{version}", bin+"luajit"
  end
end