summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-12-16 16:28:39 -0600
committerGitHub <noreply@github.com>2020-12-16 14:28:39 -0800
commit4d09dc4c619b52fb6ef1e7ad324c9c7321fc9b87 (patch)
tree381537b1ad638fb2ae059e08ec3b6ff654531024 /var
parent2bb911621921b8de5bdba76a8924f3cb4898b510 (diff)
downloadspack-4d09dc4c619b52fb6ef1e7ad324c9c7321fc9b87.tar.gz
spack-4d09dc4c619b52fb6ef1e7ad324c9c7321fc9b87.tar.bz2
spack-4d09dc4c619b52fb6ef1e7ad324c9c7321fc9b87.tar.xz
spack-4d09dc4c619b52fb6ef1e7ad324c9c7321fc9b87.zip
dlib: add new package (#20386)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/dlib/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dlib/package.py b/var/spack/repos/builtin/packages/dlib/package.py
new file mode 100644
index 0000000000..af767d310a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/dlib/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 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)
+
+
+class Dlib(CMakePackage):
+ """DLib is a collection of C++ classes to solve common tasks in C++
+ programs, as well as to offer additional functionality to use OpenCV
+ data and to solve computer vision problems."""
+
+ homepage = "https://github.com/dorian3d/DLib"
+ git = "https://github.com/dorian3d/DLib.git"
+
+ version('master', branch='master')
+
+ depends_on('cmake@3.0:', type='build')
+ depends_on('opencv+calib3d+core+features2d+highgui+imgproc')
+ # Because concretizer is broken...
+ # TODO: remove when original concretizer is obsolete
+ depends_on('opencv+flann')