Added forumla for metalua

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Stuart Carnie 2010-06-18 13:42:56 -07:00 committed by Adam Vandenberg
parent 404f1dfbe8
commit a004dedf44

19
Formula/metalua.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Metalua <Formula
head 'http://github.com/fab13n/metalua.git'
url 'http://github.com/fab13n/metalua/tarball/0.5-rc2'
homepage 'http://metalua.luaforge.net/'
md5 'c841976b3a2fe9b7322aaca16927c9e2'
depends_on 'lua'
def install
Dir.chdir "src"
ENV["INSTALL_BIN"] = "#{prefix}/bin"
ENV["INSTALL_LIB"] = "#{prefix}/lib"
system "./make.sh"
system "./make-install.sh"
end
end