aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorVictor Ilyukevich2013-11-26 11:38:15 +0200
committerMike McQuaid2013-11-26 11:47:13 +0000
commite05f627d663bb8dcc80a8372e5153c61ecb8925a (patch)
tree9a6d796fcb850264f0d5eb322c035e5b2a26140b /Library/Formula
parentd22188ca4c32aa39388be9ca240251ca1be32a8a (diff)
downloadhomebrew-e05f627d663bb8dcc80a8372e5153c61ecb8925a.tar.bz2
xctool 0.1.14
Release notes and changelog: https://github.com/facebook/xctool/releases/tag/v0.1.14 Closes #24677. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xctool.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Formula/xctool.rb b/Library/Formula/xctool.rb
index adc3ef7b5..e337001db 100644
--- a/Library/Formula/xctool.rb
+++ b/Library/Formula/xctool.rb
@@ -2,19 +2,15 @@ require 'formula'
class Xctool < Formula
homepage 'https://github.com/facebook/xctool'
- url 'https://github.com/facebook/xctool/archive/v0.1.13.tar.gz'
- sha1 '60ad514c9b0712177ef89bf576d082d7301a25f0'
+ url 'https://github.com/facebook/xctool/archive/v0.1.14.tar.gz'
+ sha1 '57e610081b781b19ec0c0f2ca81d897b708826f4'
head 'https://github.com/facebook/xctool.git'
depends_on :xcode
depends_on :macos => :lion
def install
- if build.head?
- system "./scripts/build.sh 'XT_INSTALL_ROOT=#{libexec}'"
- else
- system "./build.sh 'XT_INSTALL_ROOT=#{libexec}'"
- end
+ system "./scripts/build.sh 'XT_INSTALL_ROOT=#{libexec}'"
bin.install_symlink "#{libexec}/bin/xctool"
end