diff options
Diffstat (limited to 'Library/Formula/appledoc.rb')
| -rw-r--r-- | Library/Formula/appledoc.rb | 19 | 
1 files changed, 5 insertions, 14 deletions
diff --git a/Library/Formula/appledoc.rb b/Library/Formula/appledoc.rb index 537864dc8..47f49f677 100644 --- a/Library/Formula/appledoc.rb +++ b/Library/Formula/appledoc.rb @@ -2,8 +2,8 @@ require 'formula'  class Appledoc < Formula    homepage 'http://appledoc.gentlebytes.com/' -  url "https://github.com/tomaz/appledoc/tarball/v2.0.5" -  sha1 'c310584b16812826a1b054d2b96e040c82d709ff' +  url "https://github.com/tomaz/appledoc/tarball/v2.0.6" +  sha1 '8e9030425aad78db16b79841568b26a6c085d255'    head 'https://github.com/tomaz/appledoc.git', :branch => 'master' @@ -13,24 +13,15 @@ class Appledoc < Formula      system "xcodebuild", "-project", "appledoc.xcodeproj",                           "-target", "appledoc",                           "-configuration", "Release", -                         "install", +                         "clean", "install",                           "SYMROOT=build",                           "DSTROOT=build", -                         "INSTALL_PATH=/bin" +                         "INSTALL_PATH=/bin", +                         "OTHER_CFLAGS='-DCOMPILE_TIME_DEFAULT_TEMPLATE_PATH=@\"#{prefix}/Templates\"'"      bin.install "build/bin/appledoc"      prefix.install "Templates/"    end -  def caveats; <<-EOS.undent -    Make the documentation templates available to `appledoc': -      ln -sf "#{prefix}/Templates" "#{ENV['HOME']}/Library/Application Support/appledoc" - -    If you have edited the templates yourself, you should check for important changes. - -    NOTE someone should patch this tool so this caveat is unecessary. -    EOS -  end -    def test      system "#{bin}/appledoc", "--version"    end  | 
