aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEloy DurĂ¡n2013-09-17 15:52:46 +0200
committerAdam Vandenberg2013-09-17 07:30:42 -0700
commit8c49ea337de604966491ff7530e73d3491f4e42d (patch)
tree921711a8d9d443abea70966faf1f25b8158a42b4 /Library/Formula
parent09dd597277c67f633494a44fd1cc40284988d777 (diff)
downloadhomebrew-8c49ea337de604966491ff7530e73d3491f4e42d.tar.bz2
xcproj 0.1.1
Closes #22615. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xcproj.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/xcproj.rb b/Library/Formula/xcproj.rb
index 10dad36ab..b94b67d7f 100644
--- a/Library/Formula/xcproj.rb
+++ b/Library/Formula/xcproj.rb
@@ -2,8 +2,8 @@ require 'formula'
class Xcproj < Formula
homepage 'https://github.com/0xced/xcproj'
- url 'https://github.com/0xced/xcproj/archive/0.1.tar.gz'
- sha1 '760bba88a25f9aaae2cda299e628490bfe367ad9'
+ url 'https://github.com/0xced/xcproj/archive/0.1.1.tar.gz'
+ sha1 '3cf2e286dda4d647e8031026145fb964d826f0a3'
head 'https://github.com/0xced/xcproj.git'
@@ -12,7 +12,7 @@ class Xcproj < Formula
def install
system 'xcodebuild', "-project", "xcproj.xcodeproj",
- "-target", "xcproj",
+ "-scheme", "xcproj",
"SYMROOT=build",
"DSTROOT=#{prefix}",
"INSTALL_PATH=/bin",
@@ -25,7 +25,9 @@ class Xcproj < Formula
The xcproj binary is bound to the Xcode version that compiled it. If you delete, move or
rename the Xcode version that compiled the binary, xcproj will fail with the following error:
- The DevToolsCore framework failed to load: DevToolsCore.framework not found
+ DVTFoundation.framework not found. It probably means that you have deleted, moved or
+ renamed the Xcode copy that compiled `xcproj`.
+ Simply recompiling `xcproj` should fix this problem.
In which case you will have to remove and rebuild the installed xcproj version.
EOS