blob: 76a112d9ce5efaea78a73400a2e3c722102a060a (
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
 | require 'formula'
class Xctool < Formula
  homepage 'https://github.com/facebook/xctool'
  url 'https://github.com/facebook/xctool/archive/v0.2.3.tar.gz'
  sha1 'e22b947a4de7bc96feffb6cb24940f61574afbbc'
  head 'https://github.com/facebook/xctool.git'
  bottle do
    cellar :any
    sha1 "5bd00d5d7fa89112bd2de0b49ba36b574d44654b" => :yosemite
    sha1 "f9a420650620b21baf56a6cdc4c0a773049b2e0b" => :mavericks
    sha1 "816fe6d860e1acf6b6fa53057b700a8dcad0de8f" => :mountain_lion
  end
  depends_on :xcode => "5.0"
  def install
    system "./scripts/build.sh", "XT_INSTALL_ROOT=#{libexec}"
    bin.install_symlink "#{libexec}/bin/xctool"
  end
  test do
    system "(#{bin}/xctool -help; true)"
  end
end
 |