95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
class Xcproj < Formula
|
|
desc "Manipulate Xcode project files"
|
|
homepage "https://github.com/0xced/xcproj"
|
|
url "https://github.com/0xced/xcproj/archive/0.1.2.tar.gz"
|
|
sha256 "5281fbe618eb406cc012f1fb2996662c2a7919400c1eb6fdd03f4e85f2da0bfb"
|
|
|
|
head "https://github.com/0xced/xcproj.git"
|
|
|
|
depends_on :macos => :mountain_lion
|
|
depends_on :xcode
|
|
|
|
def install
|
|
xcodebuild "-project", "xcproj.xcodeproj",
|
|
"-scheme", "xcproj",
|
|
"SYMROOT=build",
|
|
"DSTROOT=#{prefix}",
|
|
"INSTALL_PATH=/bin",
|
|
"-verbose",
|
|
"install"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
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:
|
|
|
|
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
|
|
end
|
|
end
|