libdc1394: update dependencies and add libraw1394 dependency (#28675)

This commit is contained in:
Glenn Johnson 2022-02-01 04:09:00 -06:00 committed by GitHub
parent 7ac66547da
commit ab2187780b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -16,7 +16,9 @@ class Libdc1394(AutotoolsPackage):
version('2.2.6', sha256='2b905fc9aa4eec6bdcf6a2ae5f5ba021232739f5be047dec8fe8dd6049c10fed')
depends_on('pkgconfig', type='build')
depends_on('libusb')
depends_on('libraw1394')
def configure_args(self):
args = []

View File

@ -0,0 +1,19 @@
# 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 Libraw1394(AutotoolsPackage):
"""libbraw1394 provides direct access to the IEEE 1394 bus through the
Linux 1394 subsystem's raw1394 user space interface."""
homepage = "https://sourceforge.net/projects/libraw1394/"
url = "https://sourceforge.net/projects/libraw1394/files/libraw1394/1.2.0/libraw1394-1.2.0.tar.gz"
version(
"1.2.0",
sha256="1fdcfa4c5a0938705b925d06f17da9be6ec3f8f065040bb7f33082ef3fc63fad",
)