diff options
| author | Stuart Carnie | 2010-06-18 13:42:56 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-29 13:27:58 -0700 |
| commit | 7d939f8517d9c331d0f61b7185ebfcbde3a5fff0 (patch) | |
| tree | f48b9098048ff445e84c96b29bd90febf7c4b6c7 /Library | |
| parent | 0e901bda19636c78f08f5d83f15fe381386e237d (diff) | |
| download | homebrew-7d939f8517d9c331d0f61b7185ebfcbde3a5fff0.tar.bz2 | |
Added forumla for metalua
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/metalua.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/metalua.rb b/Library/Formula/metalua.rb new file mode 100644 index 000000000..3c61c853c --- /dev/null +++ b/Library/Formula/metalua.rb @@ -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 |
