class Libdap < Formula desc "Framework for scientific data networking" homepage "http://www.opendap.org" url "https://github.com/OPENDAP/libdap4/archive/version-3.17.1.tar.gz" sha256 "b9ee8e8dcc1a93a5c2d2e3a6fee39a3dc05c82e0e44151f8df3fc7c0f6363885" head "https://github.com/OPENDAP/libdap4.git" bottle do sha256 "0ed1a25312873af1797bade7a0f3706df5cf1b2049bd1eec3d0ca0618b38da92" => :el_capitan sha256 "07bba9bf47aa4d7d8c73dad126160f82a9b6dec7c3a9b54d915fcd8524727b23" => :yosemite sha256 "bb4b42776292f6adb3af91fb2a5df61a1e13d1dfcc07a275c0595a470dbddb64" => :mavericks end option "without-test", "Skip build-time tests (Not recommended)" depends_on "pkg-config" => :build depends_on "bison" => :build depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build depends_on "libxml2" depends_on "openssl" needs :cxx11 if MacOS.version < :mavericks 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 # Otherwise, "make check" fails ENV.cxx11 if MacOS.version < :mavericks args = %W[ --prefix=#{prefix} --disable-dependency-tracking --disable-debug --with-included-regex ] # Let's try removing this for OS X > 10.6; old note follows: # __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. args << "--with-curl=/usr" if MacOS.version <= :snow_leopard system "autoreconf", "-fvi" system "./configure", *args system "make" system "make", "check" if build.with? "test" system "make", "install" end test do assert_match version.to_s, shell_output("#{bin}/dap-config --version") end end