blob: fb2744505abe87b59e53007ff89321ee8cd1de9a (
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
31
32
33
34
35
36
37
|
require "formula"
class Ninja < Formula
homepage "https://martine.github.io/ninja/"
url "https://github.com/martine/ninja/archive/v1.5.3.tar.gz"
sha1 "b3ff794461ff5e4e1e73fe6bd11e653bbe509e63"
head "https://github.com/martine/ninja.git"
bottle do
cellar :any
sha1 "e82dc5e952531ce5a586275c1078e3c35a15246b" => :yosemite
sha1 "04e4fc5a7ee416e248fd42eab9fe04a26f79fc96" => :mavericks
sha1 "553fca852991a02ed526d4a37f79aa60c50f23ee" => :mountain_lion
end
option "without-tests", "Run build-time tests"
resource "gtest" do
url "https://googletest.googlecode.com/files/gtest-1.7.0.zip"
sha1 "f85f6d2481e2c6c4a18539e391aa4ea8ab0394af"
end
def install
system "python", "configure.py", "--bootstrap"
if build.with? "tests"
(buildpath/"gtest").install resource("gtest")
system buildpath/"configure.py", "--with-gtest=gtest"
system buildpath/"ninja", "ninja_test"
system buildpath/"ninja_test", "--gtest_filter=-SubprocessTest.SetWithLots"
end
bin.install "ninja"
bash_completion.install "misc/bash-completion" => "ninja-completion.sh"
zsh_completion.install "misc/zsh-completion" => "_ninja"
end
end
|