homebrew-core/Formula/wry.rb
Rob Warner c3bebc4feb wry 1.7.1
Closes Homebrew/homebrew#25123.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-03 22:09:23 +00:00

17 lines
431 B
Ruby

require 'formula'
class Wry < Formula
homepage 'http://grailbox.com/wry/'
url 'https://github.com/hoop33/wry/archive/v1.7.1.tar.gz'
sha1 '5c015d98572f4e96a549f7da5637d5ff863a37d9'
head 'https://github.com/hoop33/wry.git'
depends_on :macos => :lion
depends_on :xcode
def install
system 'xcodebuild -target wry -configuration Release SYMROOT=build OBJROOT=objroot'
bin.install 'build/Release/wry'
end
end