homebrew-core/Formula/luvit.rb
Daiderd Jordan 365e1d8ab7 Luvit 0.6.1
Closes Homebrew/homebrew#19925.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-18 09:15:00 -07:00

16 lines
344 B
Ruby

require 'formula'
class Luvit < Formula
homepage 'http://luvit.io'
url 'http://luvit.io/dist/latest/luvit-0.6.1.tar.gz'
sha1 'f5e49a33e0e32d8e75d5cdd843d54f213f6e508e'
head 'https://github.com/luvit/luvit.git'
def install
ENV['PREFIX'] = prefix
system './configure'
system 'make'
system 'make', 'install'
end
end