d8c8aaa44a
luajit.org is an umbrella page for a couple related projects; luajit.org/luajit.html is the LuaJIT-specific page. Nicer to open up to that, in my humble opinion. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
342 B
Ruby
14 lines
342 B
Ruby
require 'formula'
|
|
|
|
class Luajit <Formula
|
|
url 'http://luajit.org/download/LuaJIT-2.0.0-beta4.tar.gz'
|
|
head 'http://luajit.org/git/luajit-2.0.git', :using => :git
|
|
homepage 'http://luajit.org/luajit.html'
|
|
md5 '5c5a9305b3e06765e1dae138e1a95c3a'
|
|
|
|
depends_on 'lua'
|
|
|
|
def install
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|