95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
23 lines
723 B
Ruby
23 lines
723 B
Ruby
class Wry < Formula
|
|
desc "Command-line App.net tool"
|
|
homepage "http://grailbox.com/wry/"
|
|
url "https://github.com/hoop33/wry/archive/v1.8.2.tar.gz"
|
|
sha256 "bfc277b5425176c632716def46d8c8b6c8257eb764cf4cbd231de6f55c62c5f2"
|
|
|
|
head "https://github.com/hoop33/wry.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "01ed3904c9e01e700643609efae8fc0d8714bcc2" => :mavericks
|
|
sha1 "436083b0ec2addb57a9f042a8fcf99cbfce19618" => :mountain_lion
|
|
sha1 "1f492a3b41120e67046b84ee9d1d1f25e3897a87" => :lion
|
|
end
|
|
|
|
depends_on :macos => :lion
|
|
depends_on :xcode => :build
|
|
|
|
def install
|
|
xcodebuild "-target", "wry", "-configuration", "Release", "SYMROOT=build", "OBJROOT=objroot"
|
|
bin.install "build/Release/wry"
|
|
end
|
|
end
|