diff options
| author | Charlie Sharpsteen | 2011-04-01 15:46:37 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-12 09:54:08 -0700 |
| commit | be2aa1d6ac69e19ac99831add7f54c775c07cfb7 (patch) | |
| tree | 7d9df47a282e23e729b19957f1822a002b4916cb /Library/Formula | |
| parent | 2da2a70b066b3de346c68590c0ebc9e9a948b995 (diff) | |
| download | homebrew-be2aa1d6ac69e19ac99831add7f54c775c07cfb7.tar.bz2 | |
libdap 3.11.0
libdap is a C++ library and command line tool for interacting with remote
databases using the Network Data Access Protocol.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libdap.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/libdap.rb b/Library/Formula/libdap.rb new file mode 100644 index 000000000..0e2043fd7 --- /dev/null +++ b/Library/Formula/libdap.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Libdap < Formula + homepage 'http://www.opendap.org' + url 'http://www.opendap.org/pub/source/libdap-3.11.0.tar.gz' + md5 '793755cc9ba8ff34f63e6185709b8e00' + + 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}", + "--with-included-regex" + + system "make install" + end +end |
