2011-04-01 22:46:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libdap < Formula
|
|
|
|
homepage 'http://www.opendap.org'
|
2012-04-20 00:00:13 +00:00
|
|
|
url 'http://www.opendap.org/pub/source/libdap-3.11.2.tar.gz'
|
|
|
|
md5 'ab8ab83332525e048802200ea0552619'
|
2011-04-01 22:46:37 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
# NOTE:
|
|
|
|
# To future maintainers: if you ever want to build this library as a
|
|
|
|
# universal binary, see William Kyngesburye's notes:
|
|
|
|
# http://www.kyngchaos.com/macosx/build/dap
|
|
|
|
system "./configure",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2012-04-20 02:21:22 +00:00
|
|
|
# __Always pass the curl prefix!__
|
|
|
|
# Otherwise, configure will fall back to pkg-config and on Leopard
|
|
|
|
# and Snow Leopard, the libcurl.pc file that ships with the system
|
|
|
|
# is seriously broken---too many arch flags. This will be carried
|
|
|
|
# over to `dap-config` and from there the contamination will spread.
|
|
|
|
"--with-curl=/usr",
|
2011-04-01 22:46:37 +00:00
|
|
|
"--with-included-regex"
|
|
|
|
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|