blob: 3478d2b037f1b39066deb5ac3afa628ea71f2966 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 | class Luvit < Formula
  homepage "https://luvit.io"
  url "https://luvit.io/dist/latest/luvit-0.8.2.tar.gz"
  sha256 "c2639348d1716c38ac3cd66ea4c4ff1c8a72f4610dbd6e50cf31426d3956c5ff"
  head "https://github.com/luvit/luvit.git"
  revision 1
  bottle do
    cellar :any
    sha256 "3c7250314f67d320d8bc36f14e8d055860a2098bf5528b53eb58ff7d93244881" => :yosemite
    sha256 "1f4616aa1be7802088900bcec2f284e8a85a4b82ee6fc9873a4c20d30ac6ac47" => :mavericks
    sha256 "ef23e4e0cf252074738d85b1b2b2e02fd58e3a5239e00362d6f1e4dc2c58862c" => :mountain_lion
  end
  depends_on "pkg-config" => :build
  depends_on "luajit"
  depends_on "openssl"
  def install
    ENV["USE_SYSTEM_SSL"] = "1"
    ENV["USE_SYSTEM_LUAJIT"] = "1"
    ENV["PREFIX"] = prefix
    system "make"
    system "make", "install"
  end
  test do
    system bin/"luvit", "--cflags", "--libs"
  end
end
 |