require 'formula' class Xctool < Formula homepage 'https://github.com/facebook/xctool' url 'https://github.com/facebook/xctool/archive/v0.1.9.tar.gz' sha1 'b82539ff47329feb38ab9e5980e5ecdd4501d144' 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