homebrew-core/Formula/squid.rb

38 lines
899 B
Ruby
Raw Normal View History

2010-05-06 03:39:30 +00:00
require 'formula'
2012-03-21 03:46:55 +00:00
class NoBdb5 < Requirement
def message; <<-EOS.undent
This software can fail to compile when Berkeley-DB 5.x is installed.
You may need to try:
brew unlink berkeley-db
brew install squid
2012-03-21 03:46:55 +00:00
brew link berkeley-db
EOS
end
2012-03-21 03:46:55 +00:00
def satisfied?
f = Formula.factory("berkeley-db")
not f.installed?
end
# Not fatal in case Squid starts working with a newer version of BDB.
def fatal?
false
end
2012-03-21 03:46:55 +00:00
end
2011-03-10 05:11:03 +00:00
class Squid < Formula
2010-05-06 03:39:30 +00:00
homepage 'http://www.squid-cache.org/'
url 'http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.20.tar.bz2'
sha1 'caa8e65f5720dfd1bc4160946cdb86d9b23c20ab'
2010-05-06 03:39:30 +00:00
2012-03-21 03:46:55 +00:00
depends_on NoBdb5.new
2010-05-06 03:39:30 +00:00
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--localstatedir=#{var}"
system "make install"
end
end