summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Traversaro <pegua1@gmail.com>2021-07-26 09:54:19 +0200
committerGitHub <noreply@github.com>2021-07-26 09:54:19 +0200
commitf68b91defeb5607ab6ef5d7fe29223a07981eb07 (patch)
tree161e4c493c99ae81985783e9eb07b6649573901d
parent7339f2d476cb8a4007aad12b740a78d67d086142 (diff)
downloadspack-f68b91defeb5607ab6ef5d7fe29223a07981eb07.tar.gz
spack-f68b91defeb5607ab6ef5d7fe29223a07981eb07.tar.bz2
spack-f68b91defeb5607ab6ef5d7fe29223a07981eb07.tar.xz
spack-f68b91defeb5607ab6ef5d7fe29223a07981eb07.zip
libdc1394: add new package (#25079)
-rw-r--r--var/spack/repos/builtin/packages/libdc1394/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libdc1394/package.py b/var/spack/repos/builtin/packages/libdc1394/package.py
new file mode 100644
index 0000000000..59c24f47dd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libdc1394/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2021 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 Libdc1394(AutotoolsPackage):
+ """Library providing an API for IEEE 1394 cameras."""
+
+ homepage = "https://damien.douxchamps.net/ieee1394/libdc1394/"
+ url = "https://downloads.sourceforge.net/project/libdc1394/libdc1394-2/2.2.6/libdc1394-2.2.6.tar.gz"
+
+ maintainers = ['traversaro']
+
+ version('2.2.6', sha256='2b905fc9aa4eec6bdcf6a2ae5f5ba021232739f5be047dec8fe8dd6049c10fed')
+
+ depends_on('libusb')
+
+ def configure_args(self):
+ args = []
+ args.append('--disable-dependency-tracking')
+ args.append('--disable-examples')
+ args.append('--disable-sdltest')
+ return args