diff options
| author | Cyril Lashkevich | 2013-11-20 12:48:53 +0300 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-20 17:53:15 -0800 |
| commit | 4c03c1fcac919c4636b9b00ebbff0609e831baa3 (patch) | |
| tree | 3dd89899839679aebd0243fccfbb3a4a3addfce0 /Library | |
| parent | a3de72486cd35e59f97038a037ee34e9f3b73114 (diff) | |
| download | homebrew-4c03c1fcac919c4636b9b00ebbff0609e831baa3.tar.bz2 | |
luvit 0.7.0
Closes #24522.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/luvit.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/luvit.rb b/Library/Formula/luvit.rb index 97eefdecb..94c30da02 100644 --- a/Library/Formula/luvit.rb +++ b/Library/Formula/luvit.rb @@ -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 |
