blob: 96dd702e5489ade4e0d57b47961694eede758d75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
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'
  version '0.5-rc2'
  depends_on 'lua'
  def install
    Dir.chdir "src"
    ENV["INSTALL_BIN"] = bin
    ENV["INSTALL_LIB"] = lib
    system "./make.sh"
    system "./make-install.sh"
  end
end
  |