aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xctool.rb
blob: bf1781aec802244a7245ee488f01b5b58ad5a305 (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
require 'formula'

class Xctool < Formula
  homepage 'https://github.com/facebook/xctool'
  url 'https://github.com/facebook/xctool/archive/v0.1.2.tar.gz'
  sha1 '86ac6dfb61fa80a62ecd80e3632fac091f665c8a'
  head 'https://github.com/facebook/xctool.git'

  depends_on :xcode

  def install
    system './build.sh'
    # Install all files together in libexec so the binary can find the dylibs.
    libexec.install 'build/Products/Release/xctool'
    libexec.install Dir['build/Products/Release/*.dylib']
    libexec.install 'build/Products/Release/mobile-installation-helper.app'
    # Link the binary into bin
    bin.install_symlink libexec/'xctool'
  end

  test do
    system "(#{bin}/xctool -help; true)"
  end
end