Luvit 0.6.1

Closes Homebrew/homebrew#19925.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Daiderd Jordan 2013-05-19 16:22:59 +02:00 committed by Adam Vandenberg
parent 8f085bf9f4
commit 365e1d8ab7

16
Formula/luvit.rb Normal file
View file

@ -0,0 +1,16 @@
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