95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
33 lines
1.1 KiB
Ruby
33 lines
1.1 KiB
Ruby
class IosClassGuard < Formula
|
|
desc "Objective-C obfuscator for Mach-O executables"
|
|
homepage "https://github.com/Polidea/ios-class-guard/"
|
|
head "https://github.com/Polidea/ios-class-guard.git"
|
|
url "https://github.com/Polidea/ios-class-guard/archive/0.6.tar.gz"
|
|
sha256 "0f4ce249a0690dce8fe762603611c0d26d0273929c736bf6c62b308c44fc4a4d"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "e83dde7f68747d6b2d6c14beddbb737911632fad" => :mavericks
|
|
end
|
|
|
|
depends_on :macos => :mavericks
|
|
depends_on :xcode => :build
|
|
|
|
def install
|
|
xcodebuild "-workspace", "ios-class-guard.xcworkspace", "-scheme", "ios-class-guard", "-configuration", "Release", "SYMROOT=build", "PREFIX=#{prefix}", "ONLY_ACTIVE_ARCH=YES"
|
|
bin.install "build/Release/ios-class-guard"
|
|
end
|
|
|
|
test do
|
|
(testpath/"crashdump").write <<-EOS.undent
|
|
1 MYAPP 0x0006573a -[C03B setR02:] + 42
|
|
EOS
|
|
(testpath/"symbols.json").write <<-EOS.undent
|
|
{
|
|
"C03B" : "MyViewController",
|
|
"setR02" : "setRightButtons"
|
|
}
|
|
EOS
|
|
system "#{bin}/ios-class-guard", "-c", "crashdump", "-m", "symbols.json"
|
|
end
|
|
end
|