1b3335fb3e
Closes Homebrew/homebrew#25680. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
431 B
Ruby
17 lines
431 B
Ruby
require 'formula'
|
|
|
|
class Wry < Formula
|
|
homepage 'http://grailbox.com/wry/'
|
|
url 'https://github.com/hoop33/wry/archive/v1.7.2.tar.gz'
|
|
sha1 '22ac510f0f83bcdc7432ec4fac8aabdf91685ec5'
|
|
|
|
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
|