homebrew-core/Formula/metalua.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

22 lines
442 B
Ruby

require 'formula'
class Metalua < Formula
homepage 'http://metalua.luaforge.net/'
url 'https://github.com/fab13n/metalua/tarball/0.5-rc2'
version '0.5-rc2'
md5 'c841976b3a2fe9b7322aaca16927c9e2'
head 'https://github.com/fab13n/metalua.git'
depends_on 'lua'
def install
cd "src" do
ENV["INSTALL_BIN"] = bin
ENV["INSTALL_LIB"] = lib
system "./make.sh"
system "./make-install.sh"
end
end
end