2013-05-03 13:11:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Xctool < Formula
|
|
|
|
homepage 'https://github.com/facebook/xctool'
|
2013-11-26 09:38:15 +00:00
|
|
|
url 'https://github.com/facebook/xctool/archive/v0.1.14.tar.gz'
|
|
|
|
sha1 '57e610081b781b19ec0c0f2ca81d897b708826f4'
|
2013-05-06 20:23:37 +00:00
|
|
|
head 'https://github.com/facebook/xctool.git'
|
2013-05-03 13:11:10 +00:00
|
|
|
|
|
|
|
depends_on :xcode
|
2013-07-14 02:42:39 +00:00
|
|
|
depends_on :macos => :lion
|
2013-05-03 13:11:10 +00:00
|
|
|
|
|
|
|
def install
|
2013-11-26 09:38:15 +00:00
|
|
|
system "./scripts/build.sh 'XT_INSTALL_ROOT=#{libexec}'"
|
2013-07-14 02:42:39 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/xctool"
|
2013-05-03 13:11:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "(#{bin}/xctool -help; true)"
|
|
|
|
end
|
|
|
|
end
|