bbdd80d4dd
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
343 B
Ruby
14 lines
343 B
Ruby
require 'formula'
|
|
|
|
class Luajit < Formula
|
|
url 'http://luajit.org/download/LuaJIT-2.0.0-beta6.tar.gz'
|
|
head 'http://luajit.org/git/luajit-2.0.git', :using => :git
|
|
homepage 'http://luajit.org/luajit.html'
|
|
md5 'bfcbe2a11162cfa84d5a1693b442c8bf'
|
|
|
|
depends_on 'lua'
|
|
|
|
def install
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|