drizzle: remove LD/CPPFLAGS

Closes Homebrew/homebrew#15998.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Stefan 2012-11-18 21:44:26 +01:00 committed by Adam Vandenberg
parent 42775a1691
commit b26686dcea

View file

@ -1,10 +1,22 @@
require 'formula'
class LionOrNewer < Requirement
def satisfied?
MacOS.version >= :lion
end
def message
"Drizzle requires Mac OS X 10.7 (Lion) or newer."
end
end
class Drizzle < Formula
homepage 'http://drizzle.org'
url 'https://launchpad.net/drizzle/7.1/7.1.36/+download/drizzle-7.1.36-stable.tar.gz'
sha1 '6ce317d6a6b0560e75d5bcf44af2e278443cfbfe'
depends_on LionOrNewer.new
depends_on 'protobuf'
# https://github.com/mxcl/homebrew/issues/14289
@ -17,12 +29,6 @@ class Drizzle < Formula
depends_on 'readline'
def install
old_boost = Formula.factory('boost149')
ENV.append 'LDFLAGS', "-L#{old_boost.prefix}/lib"
ENV.append 'CPPFLAGS', "-I#{old_boost.prefix}/include"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"