2014-05-20 05:56:40 +00:00
|
|
|
require "formula"
|
2013-04-29 10:59:26 +00:00
|
|
|
|
|
|
|
class Wry < Formula
|
2014-05-20 05:56:40 +00:00
|
|
|
homepage "http://grailbox.com/wry/"
|
|
|
|
url "https://github.com/hoop33/wry/archive/v1.7.3.tar.gz"
|
|
|
|
sha1 "e4fdde7ffcaa2bdaf35a9b9147f8c2da24c65e71"
|
2013-04-29 10:59:26 +00:00
|
|
|
|
2014-05-20 05:56:40 +00:00
|
|
|
head "https://github.com/hoop33/wry.git"
|
2013-04-29 10:59:26 +00:00
|
|
|
|
2013-06-14 19:09:06 +00:00
|
|
|
depends_on :macos => :lion
|
2013-04-29 10:59:26 +00:00
|
|
|
depends_on :xcode
|
|
|
|
|
|
|
|
def install
|
2014-02-28 03:47:38 +00:00
|
|
|
xcodebuild "-target", "wry", "-configuration", "Release", "SYMROOT=build", "OBJROOT=objroot"
|
2014-05-20 05:56:40 +00:00
|
|
|
bin.install "build/Release/wry"
|
2013-04-29 10:59:26 +00:00
|
|
|
end
|
|
|
|
end
|