aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-26 08:03:22 -0700
committerAdam Vandenberg2014-05-26 08:03:22 -0700
commit64dd01d12b497e3d5a54df4b60ee053a7d3add0a (patch)
tree2e9be219d5f7376ac90538101936ffbc7f7cce9f /Library/Formula
parent991e47708ae6de3a1e35e934f9ec8a837d51c319 (diff)
downloadhomebrew-64dd01d12b497e3d5a54df4b60ee053a7d3add0a.tar.bz2
Move appledoc to boneyard
No Xcode 5.1 support. Closes #29488.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/appledoc.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/Library/Formula/appledoc.rb b/Library/Formula/appledoc.rb
deleted file mode 100644
index f8a2faae6..000000000
--- a/Library/Formula/appledoc.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-require 'formula'
-
-class Appledoc < Formula
- homepage 'http://appledoc.gentlebytes.com/'
- 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'
-
- depends_on :xcode
- depends_on :macos => :lion
-
- # Actually works with pre-503 clang, but we don't have a way to
- # express this yet.
- # clang 5.1 (build 503) removed support for Objective C GC, and
- # there is no stable version of Appledoc with support for ARC yet.
- # It's actually possible to build with GC disabled, but not advisable.
- # See: https://github.com/tomaz/appledoc/issues/439
- fails_with :clang
-
- def install
- xcodebuild "-project", "appledoc.xcodeproj",
- "-target", "appledoc",
- "-configuration", "Release",
- "clean", "install",
- "SYMROOT=build",
- "DSTROOT=build",
- "INSTALL_PATH=/bin",
- "OTHER_CFLAGS='-DCOMPILE_TIME_DEFAULT_TEMPLATE_PATH=@\"#{prefix}/Templates\"'"
- bin.install "build/bin/appledoc"
- prefix.install "Templates/"
- end
-
- test do
- system "#{bin}/appledoc", "--version"
- end
-end