diff options
| author | Misty De Meo | 2014-03-24 08:57:36 -0700 | 
|---|---|---|
| committer | Misty De Meo | 2014-03-24 14:30:06 -0700 | 
| commit | d0506fae53e6f5990070f2b2926ef00f83fbfe59 (patch) | |
| tree | da6ef02daa57ea989dba25931a4e8caece2042e4 | |
| parent | f37d22d8305ee2c0becd307311ad4ec1cc94f4f3 (diff) | |
| download | homebrew-d0506fae53e6f5990070f2b2926ef00f83fbfe59.tar.bz2 | |
appledoc 2.2-963
| -rw-r--r-- | Library/Formula/appledoc.rb | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/appledoc.rb b/Library/Formula/appledoc.rb index 87273fb10..ffd99c7b6 100644 --- a/Library/Formula/appledoc.rb +++ b/Library/Formula/appledoc.rb @@ -2,8 +2,9 @@ require 'formula'  class Appledoc < Formula    homepage 'http://appledoc.gentlebytes.com/' -  url "https://github.com/tomaz/appledoc/archive/v2.2.tar.gz" -  sha1 '4ad475ee6bdc2e34d6053c4e384aad1781349f5e' +  url "https://github.com/tomaz/appledoc/archive/v2.2-963.tar.gz" +  sha1 '8491dc9ae8fa6bc69da9dcedca601529af3bf4e6' +  version '2.2-963'    head 'https://github.com/tomaz/appledoc.git', :branch => 'master' @@ -18,6 +19,9 @@ class Appledoc < Formula                 "SYMROOT=build",                 "DSTROOT=build",                 "INSTALL_PATH=/bin", +               # 2.2-963 no longer actually uses ObjC GC, but will still +               # try to build with it due to this flag and hence will fail. +               "GCC_ENABLE_OBJC_GC=unsupported",                 "OTHER_CFLAGS='-DCOMPILE_TIME_DEFAULT_TEMPLATE_PATH=@\"#{prefix}/Templates\"'"      bin.install "build/bin/appledoc"      prefix.install "Templates/"  | 
