luvit 0.7.0

Closes Homebrew/homebrew#24522.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Cyril Lashkevich 2013-11-20 12:48:53 +03:00 committed by Adam Vandenberg
parent 9a74aca4dc
commit f43e9b0d0a
1 changed files with 7 additions and 3 deletions

View File

@ -2,14 +2,18 @@ require 'formula'
class Luvit < Formula
homepage 'http://luvit.io'
url 'http://luvit.io/dist/latest/luvit-0.6.1.tar.gz'
sha1 'f5e49a33e0e32d8e75d5cdd843d54f213f6e508e'
url 'http://luvit.io/dist/latest/luvit-0.7.0.tar.gz'
sha1 '6b6ca9723e90473df15abc92cbcb12cfdf7529ab'
head 'https://github.com/luvit/luvit.git'
depends_on 'pkg-config' => :build
depends_on 'luajit'
def install
ENV['USE_SYSTEM_SSL'] = '1'
ENV['USE_SYSTEM_LUAJIT'] = '1'
ENV['PREFIX'] = prefix
system './configure'
system 'make'
system 'make', 'install'
end