2013-04-29 10:59:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Wry < Formula
|
|
|
|
homepage 'http://grailbox.com/wry/'
|
2013-06-21 21:32:56 +00:00
|
|
|
url 'https://github.com/hoop33/wry/archive/v1.6.tar.gz'
|
|
|
|
sha1 '0032029d9a2716657f0dd7e0146d92ea5060ac42'
|
2013-04-29 10:59:26 +00:00
|
|
|
|
|
|
|
head 'https://github.com/hoop33/wry.git'
|
|
|
|
|
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
|
|
|
|
system 'xcodebuild -target wry -configuration Release SYMROOT=build OBJROOT=objroot'
|
|
|
|
bin.install 'build/Release/wry'
|
|
|
|
end
|
|
|
|
end
|