aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-08-09 22:26:29 -0700
committerAdam Vandenberg2012-08-09 22:26:39 -0700
commit1ff1b86135a4184effd7fdf1ffe9673f9fe92243 (patch)
tree46cb336fb64d5cb1f5b470979e1ef7f78f320f44
parent0c12fe239b2c7f2e3c1f22ed23d5bd01e1398a2d (diff)
downloadhomebrew-1ff1b86135a4184effd7fdf1ffe9673f9fe92243.tar.bz2
Remove gccxml.
It has no stable download. Closes #12764. Closes #11043.
-rw-r--r--Library/Formula/gccxml.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/gccxml.rb b/Library/Formula/gccxml.rb
deleted file mode 100644
index a41191ee0..000000000
--- a/Library/Formula/gccxml.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'formula'
-
-class Gccxml < Formula
- homepage 'http://www.gccxml.org/HTML/Index.html'
- head "cvs://:pserver:anoncvs@www.gccxml.org:/cvsroot/GCC_XML:gccxml"
-
- depends_on 'cmake' => :build
-
- def install
- mkdir 'gccxml-build' do
- system "cmake", ".", *std_cmake_args
- system "make"
- system "make install"
- end
- end
-end