aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-10 10:24:17 -0700
committerAdam Vandenberg2014-05-10 10:24:17 -0700
commitb07e03b31fa7f16937e27e96f5641973247e87e6 (patch)
tree39fa08e9668c02121fd509c0622237c7396aa2d9 /Library/Formula
parent938413246252a60335ed3c7b47afb27dcbee07e1 (diff)
downloadhomebrew-b07e03b31fa7f16937e27e96f5641973247e87e6.tar.bz2
Move shark to the boneyard
Closes #28578.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/shark.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/Library/Formula/shark.rb b/Library/Formula/shark.rb
deleted file mode 100644
index c931a2b4d..000000000
--- a/Library/Formula/shark.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'formula'
-
-class Shark < Formula
- homepage 'http://shark-project.sourceforge.net/'
- url 'https://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.4/shark-2.3.4.zip'
- sha1 '0b1b054872fe057747ff7f50e360499bb78bebdf'
-
- fails_with :clang do
- build 500
- cause "C++ is hard." # see error output below
- end
-
- # include/FileUtil/FileUtil.h:416:3: error: call to function 'scanFrom_strict' that is neither visible in the template definition nor found by argument-dependent lookup
- # scanFrom_strict(is, token, val, true);
- # ^
-
- depends_on 'cmake' => :build
-
- def install
- system "cmake", ".", *std_cmake_args
- system "make install"
- end
-end