homebrew-core/Formula/objc-codegenutils.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

33 lines
1.3 KiB
Ruby

class ObjcCodegenutils < Formula
desc "Three small tools to help work with XCode"
homepage "https://github.com/square/objc-codegenutils"
url "https://github.com/square/objc-codegenutils/archive/v1.0.tar.gz"
sha256 "98b8819e77e18029f1bda56622d42c162e52ef98f3ba4c6c8fcf5d40c256e845"
bottle do
cellar :any
sha1 "6444a44bb506d0078b494d243475aa492da91b4a" => :mavericks
sha1 "115f70a9c8b61545630a14d7503d4e20c221f6cb" => :mountain_lion
end
head "https://github.com/square/objc-codegenutils.git"
depends_on :macos => :mountain_lion
depends_on :xcode => :build
def install
xcodebuild "-project", "codegenutils.xcodeproj", "-target", "assetgen", "-configuration", "Release", "SYMROOT=build", "OBJROOT=build"
bin.install "build/Release/objc-assetgen"
xcodebuild "-target", "colordump", "-configuration", "Release", "SYMROOT=build", "OBJROOT=build"
bin.install "build/Release/objc-colordump"
xcodebuild "-target", "identifierconstants", "-configuration", "Release", "SYMROOT=build", "OBJROOT=build"
bin.install "build/Release/objc-identifierconstants"
end
test do
# Would do more verification here but it would require fixture Xcode projects not in the main repo
system "#{bin}/objc-assetgen", "-h"
system "#{bin}/objc-colordump", "-h"
system "#{bin}/objc-identifierconstants", "-h"
end
end