homebrew-core/Formula/xctool.rb
Fred Potter e1a2bbdb6f xctool 0.1.11
Release Info --
https://github.com/facebook/xctool/releases/tag/v0.1.11

Closes Homebrew/homebrew#22318.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-09-04 16:29:23 -05:00

20 lines
488 B
Ruby

require 'formula'
class Xctool < Formula
homepage 'https://github.com/facebook/xctool'
url 'https://github.com/facebook/xctool/archive/v0.1.11.tar.gz'
sha1 '3187db03ac04f8d3a763b83d6e950d0a7571fb6d'
head 'https://github.com/facebook/xctool.git'
depends_on :xcode
depends_on :macos => :lion
def install
system "./build.sh 'XT_INSTALL_ROOT=#{libexec}'"
bin.install_symlink "#{libexec}/bin/xctool"
end
test do
system "(#{bin}/xctool -help; true)"
end
end