aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-07 10:36:14 -0700
committerAdam Vandenberg2014-05-07 10:36:14 -0700
commit287f270ba20113891a5b15d6ba4a66af77b3ec00 (patch)
tree18c0ab4ef66b7f9023949641549cfc0ae70945ad /Library
parent9ff9b1400fa6511b0d584b2f88b9367eef6851ba (diff)
downloadhomebrew-287f270ba20113891a5b15d6ba4a66af77b3ec00.tar.bz2
Redact saga-core
It does not compile with clang or against newer boost, and the project website has been drastically re-organized. Closes #27111.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/saga-core.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/Library/Formula/saga-core.rb b/Library/Formula/saga-core.rb
deleted file mode 100644
index 86d4a8a77..000000000
--- a/Library/Formula/saga-core.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'formula'
-
-class SagaCore < Formula
- homepage 'http://saga-project.org'
- url 'http://download.saga.cct.lsu.edu/saga-core/saga-core-1.6.tgz'
- sha1 '89cc089b4feb5aae01ae5d371477d2d9a5204f1d'
-
- head 'https://svn.cct.lsu.edu/repos/saga/core/trunk/'
-
- depends_on 'boost'
- depends_on :postgresql
-
- def install
- system "./configure", "--prefix=#{prefix}",
- "--with-boost=#{HOMEBREW_PREFIX}",
- "--with-postgresql=#{HOMEBREW_PREFIX}"
- system "make install"
- end
-end