From fa0d710626c34b69d36a0e1a0a85ffb4232a37d5 Mon Sep 17 00:00:00 2001
From: Timo Heister <timo.heister@gmail.com>
Date: Sun, 22 Dec 2019 22:36:47 -0500
Subject: [PATCH] add new package : libdap4 (#14267)

---
 .../repos/builtin/packages/libdap4/package.py | 40 +++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 var/spack/repos/builtin/packages/libdap4/package.py

diff --git a/var/spack/repos/builtin/packages/libdap4/package.py b/var/spack/repos/builtin/packages/libdap4/package.py
new file mode 100644
index 0000000000..9568a23be2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libdap4/package.py
@@ -0,0 +1,40 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Libdap4(AutotoolsPackage):
+    """
+    libdap4 is is a c++ library to serve as a client for the OPeNDAP framework
+    that simplifies all aspects of scientific data networking and provides
+    software which makes local data accessible to remote locations regardless
+    of local storage format.
+    """
+
+    homepage = "https://www.opendap.org/"
+    url      = "https://github.com/OPENDAP/libdap4/archive/version-3.20.4.tar.gz"
+
+    maintainers = ['tjhei']
+
+    version('3.20.4', sha256='c39fa310985cc8963029ad0d0aba784e7dbf1f70c566bd7ae58242f1bb06d24a')
+
+    depends_on('autoconf', type='build')
+    depends_on('automake', type='build')
+    depends_on('libtool',  type='build')
+    depends_on('m4',       type='build')
+    depends_on('bison',    type='build')
+
+    depends_on('flex')
+    depends_on('curl')
+    depends_on('libxml2')
+    depends_on('libuuid')
+
+    def configure_args(self):
+        # libxml2 exports ./include/libxml2/ instead of ./include/, which we
+        # need, so grab this path manually:
+        libxml2_include = self.spec['libxml2'].prefix.include
+        args = ['CPPFLAGS=-I{0}'.format(libxml2_include)]
+        return args
-- 
GitLab