blob: b69b463ef54722718a1df90b3abfb1a4873b2821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"] = bin
ENV["INSTALL_LIB"] = lib
system "./make.sh"
system "./make-install.sh"
end
end
|